com.ibm.ftt.properties.util
Class Property

java.lang.Object
  extended by com.ibm.ftt.properties.util.Property
All Implemented Interfaces:
IProperty

public class Property
extends Object
implements IProperty

This is an implementation of the IProperty interface. You can use this class to implement your own property set manager.


Field Summary
static String COPY_RIGHT
           
 
Constructor Summary
Property(ICategoryInstance instance, String name, String value)
           
 
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.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

COPY_RIGHT

public static final String COPY_RIGHT
See Also:
Constant Field Values
Constructor Detail

Property

public Property(ICategoryInstance instance,
                String name,
                String value)
Method Detail

getCategoryInstance

public ICategoryInstance getCategoryInstance()
Description copied from interface: IProperty
Returns the category instance this property belongs to.

Specified by:
getCategoryInstance in interface IProperty
Returns:
The category instance the property belongs to.

getName

public String getName()
Description copied from interface: IProperty
Returns the name of the property. The property name is unique for the properties belonging to the same category instance.

Specified by:
getName in interface IProperty
Returns:
The name of the property.

getValue

public String getValue()
Description copied from interface: IProperty
Returns the value of the property.

Specified by:
getValue in interface IProperty
Returns:
The value of the property.