/* * Copyright (c) 2007, 2012, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package jtt.reflect; /* * @Harness: java * @Runs: 0=true; 1=true; 2=true; 3=true; 4=true; 5=true; 6=true; 7=true; 8=false; */ public class Field_set03 { private static final Field_set03 object = new Field_set03(); public byte byteField; public short shortField; public char charField; public int intField; public long longField; public float floatField; public double doubleField; public boolean booleanField; public static boolean test(int arg) throws NoSuchFieldException, IllegalAccessException { if (arg == 0) { Field_set03.class.getField("byteField").setByte(object, (byte) 11); return object.byteField == 11; } else if (arg == 1) { Field_set03.class.getField("shortField").setShort(object, (short) 12); return object.shortField == 12; } else if (arg == 2) { Field_set03.class.getField("charField").setChar(object, (char) 13); return object.charField == 13; } else if (arg == 3) { Field_set03.class.getField("intField").setInt(object, 14); return object.intField == 14; } else if (arg == 4) { Field_set03.class.getField("longField").setLong(object, 15L); return object.longField == 15; } else if (arg == 5) { Field_set03.class.getField("floatField").setFloat(object, 16); return object.floatField == 16; } else if (arg == 6) { Field_set03.class.getField("doubleField").setDouble(object, 17); return object.doubleField == 17; } else if (arg == 7) { Field_set03.class.getField("booleanField").setBoolean(object, true); return object.booleanField == true; } return false; } }