blob: e337c6aef735e9fd86efdf60f5c2ac923187f993 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
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;
}