public interface StyleSheet
extends java.io.Serializable
| Modifier and Type | Method and Description |
|---|---|
java.util.Iterator |
getComponentTypes(java.lang.String styleName)
Retrieves the names of all component types present in the
StyleSheet with the specified name. |
Style |
getStyle(java.lang.String styleName,
java.lang.Class componentClass,
boolean searchSuperClasses)
Retrieves the appropriate style for the specified component class
and style name.
|
java.util.Iterator |
getStyleNames()
Retrieves the names of all styles present in the
StyleSheet |
java.util.Iterator getStyleNames()
StyleSheetStrings naming all styles presentjava.util.Iterator getComponentTypes(java.lang.String styleName)
StyleSheet with the specified name.styleName - the style nameClasses providing the fully qualified names of all component types
which provide styles for the styleName valueStyle getStyle(java.lang.String styleName, java.lang.Class componentClass, boolean searchSuperClasses)
styleName - the name of the Component's specified named stylecomponentClass - the Class of the Component for which style information is being determinedsearchSuperClasses - flag indicating whether a style for a superclass should be returned in the event that no
specific style can be found for the specified componentClassStyle if found, or null otherwise