325N/A/*
325N/A * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
325N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
325N/A *
325N/A * This code is free software; you can redistribute it and/or modify it
325N/A * under the terms of the GNU General Public License version 2 only, as
325N/A * published by the Free Software Foundation. Oracle designates this
325N/A * particular file as subject to the "Classpath" exception as provided
325N/A * by Oracle in the LICENSE file that accompanied this code.
325N/A *
325N/A * This code is distributed in the hope that it will be useful, but WITHOUT
325N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
325N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
325N/A * version 2 for more details (a copy is included in the LICENSE file that
325N/A * accompanied this code).
325N/A *
325N/A * You should have received a copy of the GNU General Public License version
325N/A * 2 along with this work; if not, write to the Free Software Foundation,
325N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
325N/A *
325N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
325N/A * or visit www.oracle.com if you need additional information or have any
325N/A * questions.
325N/A */
325N/A
325N/Apackage com.sun.xml.internal.bind.v2.runtime.reflect.opt;
325N/A
325N/Aimport com.sun.xml.internal.bind.v2.runtime.reflect.TransducedAccessor;
325N/A
325N/A/**
325N/A * Used by {@link TransducedAccessor} templates.
325N/A *
325N/A * <p>
325N/A * Fields needs to have a distinctive name.
325N/A *
325N/A * @author Kohsuke Kawaguchi
325N/A */
325N/Afinal class Bean {
325N/A public boolean f_boolean;
325N/A public char f_char;
325N/A public byte f_byte;
325N/A public short f_short;
325N/A int f_int;
325N/A public long f_long;
325N/A public float f_float;
325N/A public double f_double;
325N/A /**
325N/A * Field of a reference type.
325N/A * We need a distinctive type so that it can be easily replaced.
325N/A */
325N/A public Ref f_ref;
325N/A
325N/A public boolean get_boolean() { throw new UnsupportedOperationException(); }
325N/A public void set_boolean(boolean b) { throw new UnsupportedOperationException(); }
325N/A
325N/A public char get_char() { throw new UnsupportedOperationException(); }
325N/A public void set_char(char b) { throw new UnsupportedOperationException(); }
325N/A
325N/A public byte get_byte() { throw new UnsupportedOperationException(); }
325N/A public void set_byte(byte b) { throw new UnsupportedOperationException(); }
325N/A
325N/A public short get_short() { throw new UnsupportedOperationException(); }
325N/A public void set_short(short b) { throw new UnsupportedOperationException(); }
325N/A
325N/A public int get_int() { throw new UnsupportedOperationException(); }
325N/A public void set_int(int b) { throw new UnsupportedOperationException(); }
325N/A
325N/A public long get_long() { throw new UnsupportedOperationException(); }
325N/A public void set_long(long b) { throw new UnsupportedOperationException(); }
325N/A
325N/A public float get_float() { throw new UnsupportedOperationException(); }
325N/A public void set_float(float b) { throw new UnsupportedOperationException(); }
325N/A
325N/A public double get_double() { throw new UnsupportedOperationException(); }
325N/A public void set_double(double b) { throw new UnsupportedOperationException(); }
325N/A
325N/A public Ref get_ref() { throw new UnsupportedOperationException(); }
325N/A public void set_ref(Ref r) { throw new UnsupportedOperationException(); }
325N/A}