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

/openjdk7/jdk/src/share/classes/java/beans/
H A DPropertyDescriptor.java50 private String writeMethodName; field in class:PropertyDescriptor
84 * @param writeMethodName The name of the method used for writing the property
90 String readMethodName, String writeMethodName)
98 if ("".equals(readMethodName) || "".equals(writeMethodName)) {
108 this.writeMethodName = writeMethodName;
109 if (writeMethodName != null && getWriteMethod() == null) {
110 throw new IntrospectionException("Method not found: " + writeMethodName);
273 if (cls == null || (writeMethodName == null && writeMethodRef == null)) {
292 if (writeMethodName
89 PropertyDescriptor(String propertyName, Class<?> beanClass, String readMethodName, String writeMethodName) argument
[all...]
H A DIndexedPropertyDescriptor.java84 * @param writeMethodName The name of the method used for writing 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 32 milliseconds