blob: dcab760812006a13d40518e9a249074de1b4f2a7 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2004-2005 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25
26package sun.reflect;
27
28import java.lang.reflect.Field;
29
30class UnsafeQualifiedDoubleFieldAccessorImpl
31 extends UnsafeQualifiedFieldAccessorImpl
32{
33 UnsafeQualifiedDoubleFieldAccessorImpl(Field field, boolean isReadOnly) {
34 super(field, isReadOnly);
35 }
36
37 public Object get(Object obj) throws IllegalArgumentException {
38 return new Double(getDouble(obj));
39 }
40
41 public boolean getBoolean(Object obj) throws IllegalArgumentException {
42 throw newGetBooleanIllegalArgumentException();
43 }
44
45 public byte getByte(Object obj) throws IllegalArgumentException {
46 throw newGetByteIllegalArgumentException();
47 }
48
49 public char getChar(Object obj) throws IllegalArgumentException {
50 throw newGetCharIllegalArgumentException();
51 }
52
53 public short getShort(Object obj) throws IllegalArgumentException {
54 throw newGetShortIllegalArgumentException();
55 }
56
57 public int getInt(Object obj) throws IllegalArgumentException {
58 throw newGetIntIllegalArgumentException();
59 }
60
61 public long getLong(Object obj) throws IllegalArgumentException {
62 throw newGetLongIllegalArgumentException();
63 }
64
65 public float getFloat(Object obj) throws IllegalArgumentException {
66 throw newGetFloatIllegalArgumentException();
67 }
68
69 public double getDouble(Object obj) throws IllegalArgumentException {
70 ensureObj(obj);
71 return unsafe.getDoubleVolatile(obj, fieldOffset);
72 }
73
74 public void set(Object obj, Object value)
75 throws IllegalArgumentException, IllegalAccessException
76 {
77 ensureObj(obj);
78 if (isReadOnly) {
79 throwFinalFieldIllegalAccessException(value);
80 }
81 if (value == null) {
82 throwSetIllegalArgumentException(value);
83 }
84 if (value instanceof Byte) {
85 unsafe.putDoubleVolatile(obj, fieldOffset, ((Byte) value).byteValue());
86 return;
87 }
88 if (value instanceof Short) {
89 unsafe.putDoubleVolatile(obj, fieldOffset, ((Short) value).shortValue());
90 return;
91 }
92 if (value instanceof Character) {
93 unsafe.putDoubleVolatile(obj, fieldOffset, ((Character) value).charValue());
94 return;
95 }
96 if (value instanceof Integer) {
97 unsafe.putDoubleVolatile(obj, fieldOffset, ((Integer) value).intValue());
98 return;
99 }
100 if (value instanceof Long) {
101 unsafe.putDoubleVolatile(obj, fieldOffset, ((Long) value).longValue());
102 return;
103 }
104 if (value instanceof Float) {
105 unsafe.putDoubleVolatile(obj, fieldOffset, ((Float) value).floatValue());
106 return;
107 }
108 if (value instanceof Double) {
109 unsafe.putDoubleVolatile(obj, fieldOffset, ((Double) value).doubleValue());
110 return;
111 }
112 throwSetIllegalArgumentException(value);
113 }
114
115 public void setBoolean(Object obj, boolean z)
116 throws IllegalArgumentException, IllegalAccessException
117 {
118 throwSetIllegalArgumentException(z);
119 }
120
121 public void setByte(Object obj, byte b)
122 throws IllegalArgumentException, IllegalAccessException
123 {
124 setDouble(obj, b);
125 }
126
127 public void setChar(Object obj, char c)
128 throws IllegalArgumentException, IllegalAccessException
129 {
130 setDouble(obj, c);
131 }
132
133 public void setShort(Object obj, short s)
134 throws IllegalArgumentException, IllegalAccessException
135 {
136 setDouble(obj, s);
137 }
138
139 public void setInt(Object obj, int i)
140 throws IllegalArgumentException, IllegalAccessException
141 {
142 setDouble(obj, i);
143 }
144
145 public void setLong(Object obj, long l)
146 throws IllegalArgumentException, IllegalAccessException
147 {
148 setDouble(obj, l);
149 }
150
151 public void setFloat(Object obj, float f)
152 throws IllegalArgumentException, IllegalAccessException
153 {
154 setDouble(obj, f);
155 }
156
157 public void setDouble(Object obj, double d)
158 throws IllegalArgumentException, IllegalAccessException
159 {
160 ensureObj(obj);
161 if (isReadOnly) {
162 throwFinalFieldIllegalAccessException(d);
163 }
164 unsafe.putDoubleVolatile(obj, fieldOffset, d);
165 }
166}