blob: 9e344052ada8977db6c898a3f7aa3a8ef5002dc4 [file] [log] [blame]
package org.eclipse.debug.jdi.tests.program;
/**
* Test class with static references to a variety of types
*/
public class RefClass4 {
/**
* Static reference to a <code>true</code> boolean
*/
public static final boolean True = true;
/**
* Static reference to a string value 'hello'
*/
public static final String hello = "hello";
/**
* Static reference to a long value 100
*/
public static final long longee = 100;
/**
* Static reference to an int value 1
*/
public static final int one = 1;
/**
* Static reference to a byte value 2
*/
public static byte two = 2;
/**
* Static reference to a double value 0.5
*/
public static double half = 0.5;
}