| nextapp.echo2.app.Style
All known Subclasses: nextapp.echo2.app.MutableStyle,
Style | public interface Style extends Serializable(Code) | | A representation of stylistic property information about a single instance
or type of component.
|
getIndexedProperty | public Object getIndexedProperty(String propertyName, int index)(Code) | | Retrieves the value of the specified indexed property.
|
getProperty | public Object getProperty(String propertyName)(Code) | | Retrieves the value of the specified property.
|
getPropertyIndices | public Iterator getPropertyIndices(String propertyName)(Code) | | Determines which indices of a particular property are set.
an Iterator that returns the set indices inincrementing order as Integer s |
getPropertyNames | public Iterator getPropertyNames()(Code) | | Retrieves the names of all set properties.
an Iterator that returns the names of all set properties |
isIndexedPropertySet | public boolean isIndexedPropertySet(String propertyName, int index)(Code) | | Determines if a particular index of an indexed property is set.
Parameters: propertyName - the property name Parameters: index - the index true if the index is set |
isPropertySet | public boolean isPropertySet(String propertyName)(Code) | | Determines if a particular property is set.
In the case of an indexed property, this method will return true
if any indices are set.
Parameters: propertyName - the property name true if the property is set |
|
|