SkinPropertypublic class SkinProperty extends Object
Fields Summary |
---|
public static final int | INT_TInteger property | public static final int | STRING_TString property | public static final int | FONT_TFont property | public static final int | IMAGE_TImage property | public static final int | C_IMAGE_TComposite image property | public static final int | INT_SEQ_TIntegers sequence property | public static final int | TOTAL_TTotal numbers of types | String | nameProperty's name as used in RomizedProperties.java | String | valueProperty's value | String | idName of the integer constant that is used for getting property
value in new format instead of property's name used in old format | boolean | isNewtrue, if this property is newly introduced, i.e. isn't used by
RomizedProperties.java. New properties get its values as the
result of conversion of some other properties. | int | typeProperty type | int | totalPiecesNumber of pieces in composite image | static SkinProperty[] | propertiesAll the properties used by Chameleon |
Constructors Summary |
---|
SkinProperty(String name, String defaultValue, String id, int type)Constructor
this.name = name;
this.value = defaultValue;
this.id = id;
this.isNew = false;
this.type = type;
this.totalPieces = 1;
| SkinProperty(String name, String defaultValue, String id, int type, boolean isNew)Constructor
this.name = name;
this.value = defaultValue;
this.id = id;
this.isNew = isNew;
this.type = type;
this.totalPieces = 1;
|
|