001: /*
002: * Copyright 2004-2005 Sun Microsystems, Inc. All Rights Reserved.
003: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
004: *
005: * This code is free software; you can redistribute it and/or modify it
006: * under the terms of the GNU General Public License version 2 only, as
007: * published by the Free Software Foundation. Sun designates this
008: * particular file as subject to the "Classpath" exception as provided
009: * by Sun in the LICENSE file that accompanied this code.
010: *
011: * This code is distributed in the hope that it will be useful, but WITHOUT
012: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
013: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
014: * version 2 for more details (a copy is included in the LICENSE file that
015: * accompanied this code).
016: *
017: * You should have received a copy of the GNU General Public License version
018: * 2 along with this work; if not, write to the Free Software Foundation,
019: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
020: *
021: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
022: * CA 95054 USA or visit www.sun.com if you need additional information or
023: * have any questions.
024: */
025:
026: package sun.reflect;
027:
028: import java.lang.reflect.Field;
029:
030: class UnsafeQualifiedBooleanFieldAccessorImpl extends
031: UnsafeQualifiedFieldAccessorImpl {
032: UnsafeQualifiedBooleanFieldAccessorImpl(Field field,
033: boolean isReadOnly) {
034: super (field, isReadOnly);
035: }
036:
037: public Object get(Object obj) throws IllegalArgumentException {
038: return new Boolean(getBoolean(obj));
039: }
040:
041: public boolean getBoolean(Object obj)
042: throws IllegalArgumentException {
043: ensureObj(obj);
044: return unsafe.getBooleanVolatile(obj, fieldOffset);
045: }
046:
047: public byte getByte(Object obj) throws IllegalArgumentException {
048: throw newGetByteIllegalArgumentException();
049: }
050:
051: public char getChar(Object obj) throws IllegalArgumentException {
052: throw newGetCharIllegalArgumentException();
053: }
054:
055: public short getShort(Object obj) throws IllegalArgumentException {
056: throw newGetShortIllegalArgumentException();
057: }
058:
059: public int getInt(Object obj) throws IllegalArgumentException {
060: throw newGetIntIllegalArgumentException();
061: }
062:
063: public long getLong(Object obj) throws IllegalArgumentException {
064: throw newGetLongIllegalArgumentException();
065: }
066:
067: public float getFloat(Object obj) throws IllegalArgumentException {
068: throw newGetFloatIllegalArgumentException();
069: }
070:
071: public double getDouble(Object obj) throws IllegalArgumentException {
072: throw newGetDoubleIllegalArgumentException();
073: }
074:
075: public void set(Object obj, Object value)
076: throws IllegalArgumentException, IllegalAccessException {
077: ensureObj(obj);
078: if (isReadOnly) {
079: throwFinalFieldIllegalAccessException(value);
080: }
081: if (value == null) {
082: throwSetIllegalArgumentException(value);
083: }
084: if (value instanceof Boolean) {
085: unsafe.putBooleanVolatile(obj, fieldOffset,
086: ((Boolean) value).booleanValue());
087: return;
088: }
089: throwSetIllegalArgumentException(value);
090: }
091:
092: public void setBoolean(Object obj, boolean z)
093: throws IllegalArgumentException, IllegalAccessException {
094: ensureObj(obj);
095: if (isReadOnly) {
096: throwFinalFieldIllegalAccessException(z);
097: }
098: unsafe.putBooleanVolatile(obj, fieldOffset, z);
099: }
100:
101: public void setByte(Object obj, byte b)
102: throws IllegalArgumentException, IllegalAccessException {
103: throwSetIllegalArgumentException(b);
104: }
105:
106: public void setChar(Object obj, char c)
107: throws IllegalArgumentException, IllegalAccessException {
108: throwSetIllegalArgumentException(c);
109: }
110:
111: public void setShort(Object obj, short s)
112: throws IllegalArgumentException, IllegalAccessException {
113: throwSetIllegalArgumentException(s);
114: }
115:
116: public void setInt(Object obj, int i)
117: throws IllegalArgumentException, IllegalAccessException {
118: throwSetIllegalArgumentException(i);
119: }
120:
121: public void setLong(Object obj, long l)
122: throws IllegalArgumentException, IllegalAccessException {
123: throwSetIllegalArgumentException(l);
124: }
125:
126: public void setFloat(Object obj, float f)
127: throws IllegalArgumentException, IllegalAccessException {
128: throwSetIllegalArgumentException(f);
129: }
130:
131: public void setDouble(Object obj, double d)
132: throws IllegalArgumentException, IllegalAccessException {
133: throwSetIllegalArgumentException(d);
134: }
135: }
|