1 /*
2  * Copyright (C) 2010 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 /**
18  * Class that initializes with a pause.
19  */
20 public class SlowInit {
21 
22     public static final IntHolder FIELD0 = new IntHolder(0);
23     public static final IntHolder FIELD1 = new IntHolder(0);
24     public static final IntHolder FIELD2 = new IntHolder(0);
25     public static final IntHolder FIELD3 = new IntHolder(0);
26 
printMsg(String msg)27     public static void printMsg(String msg) {
28         System.out.println(msg);
29     }
30 
31     static {
32         FIELD0.setValue(111);
33         FIELD1.setValue(222);
34         printMsg("SlowInit static block pre-sleep");
35         Main.sleep(4000);
36         printMsg("SlowInit static block post-sleep");
37         FIELD2.setValue(333);
38         FIELD3.setValue(444);
39     };
40 }
41