aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/beans/PropertyDescriptor.java
blob: ec1431273ebbb37388d21c37e89961e52f913cbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
/* java.beans.PropertyDescriptor
   Copyright (C) 1998 Free Software Foundation, Inc.

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
 
GNU Classpath 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 for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA.

As a special exception, if you link this library with other files to
produce an executable, this library does not by itself cause the
resulting executable to be covered by the GNU General Public License.
This exception does not however invalidate any other reasons why the
executable file might be covered by the GNU General Public License. */


package java.beans;

import java.util.*;
import java.lang.reflect.*;


/**
 ** PropertyDescriptor describes information about a JavaBean property,
 ** by which we mean a property that has been exposed via a pair of
 ** get and set methods.  (There may be no get method, which means
 ** the property is write-only, or no set method, which means the
 ** the property is read-only.)<P>
 **
 ** The constraints put on get and set methods are:<P>
 ** <OL>
 ** <LI>A get method must have signature
 **     <CODE>&lt;propertyType&gt; &lt;getMethodName&gt;()</CODE></LI>
 ** <LI>A set method must have signature
 **     <CODE>void &lt;setMethodName&gt;(&lt;propertyType&gt;)</CODE></LI>
 ** <LI>Either method type may throw any exception.</LI>
 ** <LI>Both methods must be public.</LI>
 ** </OL>
 **
 ** @author John Keiser
 ** @since JDK1.1
 ** @version 1.1.0, 26 Jul 1998
 **/

public class PropertyDescriptor extends FeatureDescriptor {
	Class propertyType;
	Method getMethod;
	Method setMethod;

	Class propertyEditorClass;
	boolean bound;
	boolean constrained;

	PropertyDescriptor(String name) {
		setName(name);
	}

	/** Create a new PropertyDescriptor by introspection.
	 ** This form of constructor creates the PropertyDescriptor by
	 ** looking for a getter method named <CODE>get&lt;name&gt;()</CODE>
	 ** (or, optionally, if the property is boolean,
	 ** <CODE>is&lt;name&gt;()</CODE>) and
	 ** <CODE>set&lt;name&gt;()</CODE> in class
	 ** <CODE>&lt;beanClass&gt;</CODE>, where &lt;name&gt; has its
	 ** first letter capitalized by the constructor.<P>
	 **
	 ** <B>Implementation note:</B> If there is a get method (or
	 ** boolean isXXX() method), then the return type of that method
	 ** is used to find the set method.  If there is no get method,
	 ** then the set method is searched for exhaustively.<P>
	 **
	 ** <B>Spec note:</B>
	 ** If there is no get method and multiple set methods with
	 ** the same name and a single parameter (different type of course),
	 ** then an IntrospectionException is thrown.  While Sun's spec
	 ** does not state this, it can make Bean behavior different on
	 ** different systems (since method order is not guaranteed) and as
	 ** such, can be treated as a bug in the spec.  I am not aware of
	 ** whether Sun's implementation catches this.
	 **
	 ** @param name the programmatic name of the property, usually
	 **             starting with a lowercase letter (e.g. fooManChu
	 **             instead of FooManChu).
	 ** @param beanClass the class the get and set methods live in.
	 ** @exception IntrospectionException if the methods are not found or invalid.
	 **/
	public PropertyDescriptor(String name, Class beanClass) throws IntrospectionException {
		setName(name);
		String capitalized;
		try {
			capitalized = Character.toUpperCase(name.charAt(0)) + name.substring(1);
		} catch(StringIndexOutOfBoundsException e) {
			capitalized = "";
		}
		findMethods(beanClass, "is" + capitalized, "get" + capitalized, "set" + capitalized);
	}

	/** Create a new PropertyDescriptor by introspection.
	 ** This form of constructor allows you to specify the
	 ** names of the get and set methods to search for.<P>
	 **
	 ** <B>Implementation note:</B> If there is a get method (or
	 ** boolean isXXX() method), then the return type of that method
	 ** is used to find the set method.  If there is no get method,
	 ** then the set method is searched for exhaustively.<P>
	 **
	 ** <B>Spec note:</B>
	 ** If there is no get method and multiple set methods with
	 ** the same name and a single parameter (different type of course),
	 ** then an IntrospectionException is thrown.  While Sun's spec
	 ** does not state this, it can make Bean behavior different on
	 ** different systems (since method order is not guaranteed) and as
	 ** such, can be treated as a bug in the spec.  I am not aware of
	 ** whether Sun's implementation catches this.
	 **
	 ** @param name the programmatic name of the property, usually
	 **             starting with a lowercase letter (e.g. fooManChu
	 **             instead of FooManChu).
	 ** @param beanClass the class the get and set methods live in.
	 ** @param getMethodName the name of the get method.
	 ** @param setMethodName the name of the set method.
	 ** @exception IntrospectionException if the methods are not found or invalid.
	 **/
	public PropertyDescriptor(String name, Class beanClass, String getMethodName, String setMethodName) throws IntrospectionException {
		setName(name);
		findMethods(beanClass, getMethodName, null, setMethodName);
	}

	/** Create a new PropertyDescriptor using explicit Methods.
	 ** Note that the methods will be checked for conformance to standard
	 ** Property method rules, as described above at the top of this class.
	 ** 
	 ** @param name the programmatic name of the property, usually
	 **             starting with a lowercase letter (e.g. fooManChu
	 **             instead of FooManChu).
	 ** @param getMethod the get method.
	 ** @param setMethod the set method.
	 ** @exception IntrospectionException if the methods are not found or invalid.
	 **/
	public PropertyDescriptor(String name, Method getMethod, Method setMethod) throws IntrospectionException {
		setName(name);
		if(getMethod != null && getMethod.getParameterTypes().length > 0) {
			throw new IntrospectionException("get method has parameters");
		}
		if(setMethod != null && setMethod.getParameterTypes().length != 1) {
			throw new IntrospectionException("set method does not have exactly one parameter");
		}
		if(getMethod != null && setMethod != null) {
			if(!getMethod.getReturnType().equals(setMethod.getParameterTypes()[0])) {
				throw new IntrospectionException("set and get methods do not share the same type");
			}
			if(!getMethod.getDeclaringClass().isAssignableFrom(setMethod.getDeclaringClass())
			   && !setMethod.getDeclaringClass().isAssignableFrom(getMethod.getDeclaringClass())) {
				throw new IntrospectionException("set and get methods are not in the same class.");
			}
		}
		this.getMethod = getMethod;
		this.setMethod = setMethod;
		if(getMethod != null) {
			this.propertyType = getMethod.getReturnType();
		} else {
			this.propertyType = setMethod.getParameterTypes()[0];
		}
	}

	/** Get the property type.
	 ** This is the type the get method returns and the set method
	 ** takes in.
	 **/
	public Class getPropertyType() {
		return propertyType;
	}

	/** Get the get method.  Why they call it readMethod here and
	 ** get everywhere else is beyond me.
	 **/
	public Method getReadMethod() {
		return getMethod;
	}

	/** Get the set method.  Why they call it writeMethod here and
	 ** set everywhere else is beyond me.
	 **/
	public Method getWriteMethod() {
		return setMethod;
	}

	/** Get whether the property is bound.  Defaults to false. **/
	public boolean isBound() {
		return bound;
	}

	/** Set whether the property is bound.
	 ** As long as the the bean implements addPropertyChangeListener() and
	 ** removePropertyChangeListener(), setBound(true) may safely be called.<P>
	 ** If these things are not true, then the behavior of the system
	 ** will be undefined.<P>
	 **
	 ** When a property is bound, its set method is required to fire the
	 ** <CODE>PropertyChangeListener.propertyChange())</CODE event
	 ** after the value has changed.
	 ** @param bound whether the property is bound or not.
	 **/
	public void setBound(boolean bound) {
		this.bound = bound;
	}

	/** Get whether the property is constrained.  Defaults to false. **/
	public boolean isConstrained() {
		return constrained;
	}

	/** Set whether the property is constrained.
	 ** If the set method throws <CODE>java.beans.PropertyVetoException</CODE>
	 ** (or subclass thereof) and the bean implements addVetoableChangeListener()
	 ** and removeVetoableChangeListener(), then setConstrained(true) may safely
	 ** be called.  Otherwise, the system behavior is undefined.
	 ** <B>Spec note:</B> given those strict parameters, it would be nice if it
	 ** got set automatically by detection, but oh well.<P>
	 ** When a property is constrained, its set method is required to:<P>
	 ** <OL>
	 ** <LI>Fire the <CODE>VetoableChangeListener.vetoableChange()</CODE>
	 **     event notifying others of the change and allowing them a chance to
	 **     say it is a bad thing.</LI>
	 ** <LI>If any of the listeners throws a PropertyVetoException, then
	 **     it must fire another vetoableChange() event notifying the others
	 **     of a reversion to the old value (though, of course, the change
	 **     was never made).  Then it rethrows the PropertyVetoException and
	 **     exits.</LI>
	 ** <LI>If all has gone well to this point, the value may be changed.</LI>
	 ** </OL>
	 ** @param constrained whether the property is constrained or not.
	 **/
	public void setConstrained(boolean constrained) {
		this.constrained = constrained;
	}

	/** Get the PropertyEditor class.  Defaults to null. **/
	public Class getPropertyEditorClass() {
		return propertyEditorClass;
	}

	/** Set the PropertyEditor class.  If the class does not implement
	 ** the PropertyEditor interface, you will likely get an exception
	 ** late in the game.
	 ** @param propertyEditorClass the PropertyEditor class for this class to use.
	 **/
	public void setPropertyEditorClass(Class propertyEditorClass) {
		this.propertyEditorClass = propertyEditorClass;
	}

	private void findMethods(Class beanClass, String getMethodName1, String getMethodName2, String setMethodName) throws IntrospectionException {
		try {
			if(getMethodName1 != null) {
				try {
					getMethod = beanClass.getMethod(getMethodName1, new Class[0]);
				} catch(NoSuchMethodException E) {
				}
				if(getMethodName2 != null) {
					if(getMethod != null && !getMethod.getReturnType().equals(java.lang.Boolean.TYPE)) {
						// If the is() method exists but isn't boolean, we'll just go on and look for
						// an ordinary get() method.
						getMethod = null;
					}

					Method getMethod2;
					try {
						getMethod2 = beanClass.getMethod(getMethodName2, new Class[0]);
					} catch(NoSuchMethodException E) {
						getMethod2 = null;
					}
					if(getMethod2 != null) {
						if(getMethod != null) {
							if(!getMethod.getReturnType().equals(getMethod2.getReturnType())) {
								throw new IntrospectionException("Both " + getMethodName1 + " and " + getMethodName2 + " exist, and have contradictory return types.");
							}
						} else {
							getMethod = getMethod2;
						}
					}
				}
			}

			if(getMethod != null) {
				propertyType = getMethod.getReturnType();
				if(setMethodName != null) {
					Class[] setArgs = new Class[1];
					setArgs[0] = propertyType;
					try {
						setMethod = beanClass.getMethod(setMethodName, setArgs);
						if(!setMethod.getReturnType().equals(java.lang.Void.TYPE)) {
							throw new IntrospectionException(setMethodName + " has non-void return type");
						}
					} catch(NoSuchMethodException E) {
					}
				}
			} else if(setMethodName != null) {
				Method[] m = beanClass.getMethods();
				for(int i=0;i<m.length;i++) {
					Method current = m[i];
					if(current.getName().equals(setMethodName)
					   && current.getParameterTypes().length == 1
					   && current.getReturnType().equals(java.lang.Void.TYPE)) {
						if(setMethod != null) {
							throw new IntrospectionException("Multiple, different set methods found that fit the bill!");
						} else {
							setMethod = current;
							propertyType = current.getParameterTypes()[0];
						}
					}
				}
				if(setMethod == null) {
					throw new IntrospectionException("Cannot find get or set methods.");
				}
			} else {
				throw new IntrospectionException("Cannot find get or set methods.");
			}
		} catch(SecurityException E) {
			throw new IntrospectionException("SecurityException thrown on attempt to access methods.");
		}
	}
}