blob: f4718e4b08d143a631410e8e1b63a36a2a5f91c4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* 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;
}