Searched refs:readMethodName (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/beans/
H A DPropertyDescriptor.java51 private String readMethodName; field in class:PropertyDescriptor
82 * @param readMethodName The name of the method used for reading the property
90 String readMethodName, String writeMethodName)
98 if ("".equals(readMethodName) || "".equals(writeMethodName)) {
104 this.readMethodName = readMethodName;
105 if (readMethodName != null && getReadMethod() == null) {
106 throw new IntrospectionException("Method not found: " + readMethodName);
209 if (cls == null || (readMethodName == null && readMethodRef == null)) {
214 if (readMethodName
89 PropertyDescriptor(String propertyName, Class<?> beanClass, String readMethodName, String writeMethodName) argument
[all...]
H A DIndexedPropertyDescriptor.java81 * @param readMethodName The name of the method used for reading the property
97 String readMethodName, String writeMethodName,
100 super(propertyName, beanClass, readMethodName, writeMethodName);
96 IndexedPropertyDescriptor(String propertyName, Class<?> beanClass, String readMethodName, String writeMethodName, String indexedReadMethodName, String indexedWriteMethodName) argument

Completed in 248 milliseconds