Provides introspection into Echo components.
A wrapper for JavaBean APIs to preform introspection on
Echo Components. Provides convenience methods to retrieve
available property names, types, and other bean-related
information.
Creates a new ComponentIntrospector for a type of
Echo component.
Parameters: typeName - the type name of Echo component Parameters: classLoader - the class loader from which the type classmay be retrieved
Retrieves the names of all constants.
A constant is defined to be any public static final variable
declared in the introspected class.
an iterator over the constant names
Retrieves the value of the constant with the specified name.
Parameters: constantName - the name of the constant (unqualified) the constant value, or null if no such constant exists See Also:ComponentIntrospector.getConstantNames()
Returns the PropertyDescriptor for the specified property.
Parameters: propertyName - the name of the property the PropertyDescriptor associated with the property
Returns a write (setter) method for a specific property.
Parameters: propertyName - the name of the property the write method (if available)
isIndexedProperty
public boolean isIndexedProperty(String propertyName)(Code)
Determines whether a property is an indexed property.
Parameters: propertyName - the name of the property to query true if the specified property is indexed