Lines Matching refs:properties

53  * the properties, events, and methods supported by a target Java Bean.
119 // properties maps from String names to PropertyDescriptors
120 private Map properties;
138 * Introspect on a Java Bean and learn about all its properties, exposed
172 * Introspect on a Java bean and learn about all its properties, exposed
198 * Introspect on a Java bean and learn all about its properties, exposed
207 * methods/properties/events in the stopClass or in its baseclasses
218 * Introspect on a Java Bean and learn about all its properties,
230 * Any methods/properties/events in the {@code stopClass}
313 * of system properties.
414 // look for properties.
443 * properties supported by the target bean.
456 // We have no explicit BeanInfo properties. Check with our parent.
535 // source, then we assume that any properties we discover are "bound".
546 PropertyDescriptor result[] = new PropertyDescriptor[properties.size()];
547 result = (PropertyDescriptor[])properties.values().toArray(result);
623 if (properties == null) {
624 properties = new TreeMap();
639 // First pass. Find the latest getter method. Merge properties
720 // Complete indexed properties set
740 // Complete simple properties set
793 properties.put(pd.getName(), pd);
1459 private PropertyDescriptor[] properties;
1466 PropertyDescriptor[] properties, int defaultProperty,
1471 this.properties = properties;
1494 if (old.properties != null) {
1495 int len = old.properties.length;
1496 properties = new PropertyDescriptor[len];
1498 PropertyDescriptor oldp = old.properties[i];
1500 properties[i] = new IndexedPropertyDescriptor(
1503 properties[i] = new PropertyDescriptor(oldp);
1519 return properties;