JIDE 3.5.15

com.jidesoft.introspector
Interface Introspector<T extends Property>

All Known Implementing Classes:
BeanIntrospector

public interface Introspector<T extends Property>


Method Summary
 void addProperty(T property)
          Adds a new property.
 T getProperty(String name)
          Gets the property with the specified name.
 int getPropertyCount()
          Gets the property count.
 String[] getPropertyNames()
          Gets the properties names in an array.
 void removeProperty(String name)
          Removes the property with the specified name.
 

Method Detail

getPropertyCount

int getPropertyCount()
Gets the property count.

Returns:
the property count.

getProperty

T getProperty(String name)
Gets the property with the specified name.

Parameters:
name - the property name.
Returns:
the property with the specified name.

removeProperty

void removeProperty(String name)
Removes the property with the specified name.

Parameters:
name - the property name.

addProperty

void addProperty(T property)
Adds a new property.

Parameters:
property - a new property

getPropertyNames

String[] getPropertyNames()
Gets the properties names in an array.

Returns:
the property names.

JIDE 3.5.15