com.ibm.ftt.properties
Interface IProperty

All Known Implementing Classes:
Property

public interface IProperty

A property consists of a name and a value. The name and value cannot be changed by using this interface, the value can be changed by calling ICategoryIntance#setValue(String name, String value).


Field Summary
static String COPY_RIGHT
           
 
Method Summary
 ICategoryInstance getCategoryInstance()
          Returns the category instance this property belongs to.
 String getName()
          Returns the name of the property.
 String getValue()
          Returns the value of the property.
 

Field Detail

COPY_RIGHT

static final String COPY_RIGHT
See Also:
Constant Field Values
Method Detail

getName

String getName()
Returns the name of the property. The property name is unique for the properties belonging to the same category instance.

Returns:
The name of the property.

getValue

String getValue()
Returns the value of the property.

Returns:
The value of the property.

getCategoryInstance

ICategoryInstance getCategoryInstance()
Returns the category instance this property belongs to.

Returns:
The category instance the property belongs to.