1 /*
2  * Copyright (c) 2001, 2018, 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 package nsk.jdi.TypeComponent.isFinal;
26 
27 import nsk.share.*;
28 import nsk.share.jpda.*;
29 import nsk.share.jdi.*;
30 
31 
32 public class isfinal001a {
main(String argv[])33     public static void main (String argv[]) {
34         ArgumentHandler argHandler = new ArgumentHandler(argv);
35         Log log = new Log(System.err, argHandler);
36         IOPipe pipe = argHandler.createDebugeeIOPipe(log);
37         isfinal001aClassToCheck classToCheck = new isfinal001aClassToCheck();
38 
39         log.display("DEBUGEE> debugee started.");
40         pipe.println("ready");
41         String instruction = pipe.readln();
42         if (instruction.equals("quit")) {
43             log.display("DEBUGEE> \"quit\" signal recieved.");
44             log.display("DEBUGEE> completed succesfully.");
45             System.exit(95);
46         }
47         log.complain("DEBUGEE FAILURE> unexpected signal "
48                          + "(no \"quit\") - " + instruction);
49         log.complain("DEBUGEE FAILURE> TEST FAILED");
50         System.exit(97);
51     }
52 }
53 
54 class isfinal001aClassToCheck {
55     // User class and interface
56     class isfinal001aClass {}
57     interface isfinal001aInter {}
58 
59     boolean z0, z1[]={z0}, z2[][]={z1};
60     byte    b0, b1[]={b0}, b2[][]={b1};
61     char    c0, c1[]={c0}, c2[][]={c1};
62     double  d0, d1[]={d0}, d2[][]={d1};
63     float   f0, f1[]={f0}, f2[][]={f1};
64     int     i0, i1[]={i0}, i2[][]={i1};
65     long    l0, l1[]={l0}, l2[][]={l1};
66     short   r0, r1[]={r0}, r2[][]={r1};
67 
68     final boolean z0F = true,     z1F[]={z0F}, z2F[][]={z1F};
69     final byte    b0F = 1,        b1F[]={b0F}, b2F[][]={b1F};
70     final char    c0F = '\u00ff', c1F[]={c0F}, c2F[][]={c1F};
71     final double  d0F = 1,        d1F[]={d0F}, d2F[][]={d1F};
72     final float   f0F = 1f,       f1F[]={f0F}, f2F[][]={f1F};
73     final int     i0F = 1,        i1F[]={i0F}, i2F[][]={i1F};
74     final long    l0F = 1l,       l1F[]={l0F}, l2F[][]={l1F};
75     final short   r0F = 1,        r1F[]={r0F}, r2F[][]={r1F};
76 
77     static    long lS0, lS1[]={lS0}, lS2[][]={lS1};
78     private   long lP0, lP1[]={lP0}, lP2[][]={lP1};
79     public    long lU0, lU1[]={lU0}, lU2[][]={lU1};
80     protected long lR0, lR1[]={lR0}, lR2[][]={lR1};
81     transient long lT0, lT1[]={lT0}, lT2[][]={lT1};
82     volatile  long lV0, lV1[]={lV0}, lV2[][]={lV1};
83 
84     final static    long lS0F = 1l, lS1F[]={lS0F}, lS2F[][]={lS1F};
85     final private   long lP0F = 1l, lP1F[]={lP0F}, lP2F[][]={lP1F};
86     final public    long lU0F = 1l, lU1F[]={lU0F}, lU2F[][]={lU1F};
87     final protected long lR0F = 1l, lR1F[]={lR0F}, lR2F[][]={lR1F};
88     final transient long lT0F = 1l, lT1F[]={lT0F}, lT2F[][]={lT1F};
89 
90     isfinal001aClass     X0, X1[]={X0}, X2[][]={X1};
91     Object    O0, O1[]={O0}, O2[][]={O1};
92 
93     final isfinal001aClass     X0F = new isfinal001aClass(), X1F[]={X0F}, X2F[][]={X1F};
94     final Object    O0F = new Object(), O1F[]={O0F}, O2F[][]={O1F};
95 
96     static    Long LS0, LS1[]={LS0}, LS2[][]={LS1};
97     private   Long LP0, LP1[]={LP0}, LP2[][]={LP1};
98     public    Long LU0, LU1[]={LU0}, LU2[][]={LU1};
99     protected Long LR0, LR1[]={LR0}, LR2[][]={LR1};
100     transient Long LT0, LT1[]={LT0}, LT2[][]={LT1};
101     volatile  Long LV0, LV1[]={LV0}, LV2[][]={LV1};
102 
103     final static    Long LS0F = new Long(1), LS1F[]={LS0F}, LS2F[][]={LS1F};
104     final private   Long LP0F = new Long(1), LP1F[]={LP0F}, LP2F[][]={LP1F};
105     final public    Long LU0F = new Long(1), LU1F[]={LU0F}, LU2F[][]={LU1F};
106     final protected Long LR0F = new Long(1), LR1F[]={LR0F}, LR2F[][]={LR1F};
107     final transient Long LT0F = new Long(1), LT1F[]={LT0F}, LT2F[][]={LT1F};
108 
109     isfinal001aInter E0, E1[]={E0}, E2[][]={E1};
110     final isfinal001aInter E0F = null, E1F[]={E0F}, E2F[][]={E1F};
111 
112     static    isfinal001aInter ES0, ES1[]={ES0}, ES2[][]={ES1};
113     private   isfinal001aInter EP0, EP1[]={EP0}, EP2[][]={EP1};
114     public    isfinal001aInter EU0, EU1[]={EU0}, EU2[][]={EU1};
115     protected isfinal001aInter ER0, ER1[]={ER0}, ER2[][]={ER1};
116     transient isfinal001aInter ET0, ET1[]={ET0}, ET2[][]={ET1};
117     volatile  isfinal001aInter EV0, EV1[]={EV0}, EV2[][]={EV1};
118 
119     final static    isfinal001aInter ES0F = null, ES1F[]={ES0F}, ES2F[][]={ES1F};
120     final private   isfinal001aInter EP0F = null, EP1F[]={EP0F}, EP2F[][]={EP1F};
121     final public    isfinal001aInter EU0F = null, EU1F[]={EU0F}, EU2F[][]={EU1F};
122     final protected isfinal001aInter ER0F = null, ER1F[]={ER0F}, ER2F[][]={ER1F};
123     final transient isfinal001aInter ET0F = null, ET1F[]={ET0F}, ET2F[][]={ET1F};
124 }
125