/******************************************************************************* * 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 *******************************************************************************/ package targets.model.pc; public class Constants { public static final double C1 = 0.125; public static final int C2 = 2; public static final long C3 = 10; public static final float C4 = 0.2f; public static final boolean C5 = true; public static final char C6 = ' '; public static final short C7 = (short) 256; public static final byte C8 = 1; public static final String C9 = "Hello World"; }