6029
|
1 |
/*
|
|
2 |
* Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
|
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
4 |
*
|
|
5 |
* This code is free software; you can redistribute it and/or modify it
|
|
6 |
* under the terms of the GNU General Public License version 2 only, as
|
|
7 |
* published by the Free Software Foundation.
|
|
8 |
*
|
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that
|
|
13 |
* accompanied this code).
|
|
14 |
*
|
|
15 |
* You should have received a copy of the GNU General Public License version
|
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
18 |
*
|
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
20 |
* or visit www.oracle.com if you need additional information or have any
|
|
21 |
* questions.
|
|
22 |
*/
|
|
23 |
|
|
24 |
/**
|
|
25 |
* Complex example for the "access constructor tags" issue.
|
|
26 |
* This test causes Lower to evaluate all classes defined in installNext
|
|
27 |
* before they are lowered, thus preventing the use of Lower.classdefs
|
|
28 |
* as a way of determining whether a class has been translated or not.
|
|
29 |
*/
|
|
30 |
class GraphicalInstaller {
|
|
31 |
private BackgroundInstaller backgroundInstaller;
|
|
32 |
|
|
33 |
private void installNext() {
|
|
34 |
final Integer x = 0;
|
|
35 |
class X {
|
|
36 |
Object o = new Object() { int y = x; };
|
|
37 |
};
|
|
38 |
new X();
|
|
39 |
if (false) {
|
|
40 |
new Runnable(){
|
|
41 |
public void run() {
|
|
42 |
}
|
|
43 |
};
|
|
44 |
}
|
|
45 |
}
|
|
46 |
|
|
47 |
private void installSuiteCommon() {
|
|
48 |
backgroundInstaller = new BackgroundInstaller();
|
|
49 |
}
|
|
50 |
|
|
51 |
private static class BackgroundInstaller {
|
|
52 |
private BackgroundInstaller() {
|
|
53 |
}
|
|
54 |
}
|
|
55 |
}
|