| org.jvnet.substance.utils.SubstanceTraitInfo
All known Subclasses: org.jvnet.substance.utils.AbstractTraitInfo,
SubstanceTraitInfo | public interface SubstanceTraitInfo (Code) | | Base interface for Substance traits info, like
ThemeInfo ,
WatermarkInfo etc.
author: Kirill Grouchnikov |
Method Summary | |
public String | getClassName() Returns the class name of the associated trait.
The class name of the associated trait. | public String | getDisplayName() Returns the display name of the associated trait. | public boolean | isDefault() Returns indication whether the associated trait is default. | public void | setDefault(boolean isDefault) Sets indication whether the associated trait is default. |
getClassName | public String getClassName()(Code) | | Returns the class name of the associated trait.
The class name of the associated trait. This method is part ofofficially supported API. |
getDisplayName | public String getDisplayName()(Code) | | Returns the display name of the associated trait. This method is part of
officially supported API.
The display name of the associated trait. |
isDefault | public boolean isDefault()(Code) | | Returns indication whether the associated trait is default.
true if the associated trait is default,false otherwise. |
setDefault | public void setDefault(boolean isDefault)(Code) | | Sets indication whether the associated trait is default.
Parameters: isDefault - New indication whether the associated trait is default. |
|
|