All Packages Class Hierarchy This Package Previous Next Index
Class com.sun.jaw.reference.common.Property
java.lang.Object
|
+----com.sun.jaw.reference.common.Property
- public class Property
- extends Object
- implements Serializable
This class is used to represent a property and its associated value.
- See Also:
- PropertyList
-
Property(String, Object)
- Allows a non-indexed property to be created.
-
Property(String, Object, int)
- Allows an indexed property to be created.
-
getPosition()
- Returns the position.
-
getProperty()
- Returns the property.
-
getValue()
- Returns the value.
Property
public Property(String property,
Object value)
- Allows a non-indexed property to be created.
- Parameters:
- property - The property to be created.
- value - The value assigned to the property.
Property
public Property(String property,
Object value,
int position)
- Allows an indexed property to be created.
- Parameters:
- property - The property to be created.
- value - The value assigned to the property.
- position - The position of the property in the index.
getProperty
public String getProperty()
- Returns the property.
getPosition
public int getPosition()
- Returns the position.
getValue
public Object getValue()
- Returns the value.
All Packages Class Hierarchy This Package Previous Next Index