01: package org.eclipse.debug.jdi.tests.program;
02:
03: /**
04: * Test class with static references to a variety of types
05: */
06: public class RefClass4 {
07: /**
08: * Static reference to a <code>true</code> boolean
09: */
10: public static final boolean True = true;
11: /**
12: * Static reference to a string value 'hello'
13: */
14: public static final String hello = "hello";
15: /**
16: * Static reference to a long value 100
17: */
18: public static final long longee = 100;
19: /**
20: * Static reference to an int value 1
21: */
22: public static final int one = 1;
23: /**
24: * Static reference to a byte value 2
25: */
26: public static byte two = 2;
27: /**
28: * Static reference to a double value 0.5
29: */
30: public static double half = 0.5;
31: }
|