// This product is provided under the terms of EPL (Eclipse Public License) // version 1.0. // // The full license text can be read from: http://www.eclipse.org/org/documents/epl-v10.php package org.dtangler.javaengine.classfileparser.testdata; public class SimpleClassWithPrimitiveFields { int myInt = 0; long myLong = 0; double myDouble = 0; char myChar = 0; int[] myIntArray = new int[] { 0 }; float myFloat = 0; byte myByte = 0; boolean myBoolean = false; }