Lines Matching defs:read

33  * array and has an indexed read and/or indexed write method to access
36 * An indexed property may also provide simple non-indexed read and write
37 * methods. If these are present, they read and write arrays of the type
38 * returned by the indexed read method.
85 * values as an array. May be null if the property is read-only
92 * May be null if the property is read-only.
123 * May be null if the property is read-only or must be indexed.
127 * May be null if the property is read-only.
145 * with the specified name and methods to read/write the property value.
149 * @param read the method used for reading the property value
157 IndexedPropertyDescriptor(Class<?> bean, String base, Method read, Method write, Method readIndexed, Method writeIndexed) throws IntrospectionException {
158 super(bean, base, read, write);
168 * Gets the method that should be used to read an indexed
171 * @return The method that should be used to read an indexed
207 * Sets the method that should be used to read an indexed property value.
209 * @param readMethod The new indexed read method.
239 * May return null if the property isn't indexed or is read-only.
316 * This type is returned by the indexed read method
368 throw new IntrospectionException("bad indexed read method arg count");
371 throw new IntrospectionException("non int index to indexed read method");
375 throw new IntrospectionException("indexed read method returns void");
388 "type mismatch between indexed read and indexed write methods: "
405 * are the same if the read, write, property types, property editor and