Lines Matching defs:read

47     // read and write method. If name == "foo" then the baseName is "Foo"
85 * value. May be null if the property is read-only.
99 throw new IntrospectionException("read or write method name should not be the empty string");
127 * May be null if the property is read-only.
143 * with the specified name and methods to read/write the property value.
147 * @param read the method used for reading the property value
153 PropertyDescriptor(Class<?> bean, String base, Method read, Method write) throws IntrospectionException {
159 setReadMethod(read);
168 * This type is returned by the read method
200 * Gets the method that should be used to read the property value.
202 * @return The method that should be used to read the property value.
203 * May return null if the property can't be read.
210 // The read method was explicitly set to null.
243 * Sets the method that should be used to read the property value.
245 * @param readMethod The new read method.
254 // The property type is determined by the read method.
471 * are the same if the read, write, property types, property editor and
560 // Figure out the merged read method.
575 // However, if both x and y reference read methods in the same class,
644 * Returns the property type that corresponds to the read and write method.
648 * read and write methods are null.
649 * @throws IntrospectionException if the read or write method is invalid
658 throw new IntrospectionException("bad read method arg count: "
663 throw new IntrospectionException("read method " +
674 throw new IntrospectionException("type mismatch between read and write methods");