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

Constructor Index

 o Property(String, Object)
Allows a non-indexed property to be created.
 o Property(String, Object, int)
Allows an indexed property to be created.

Method Index

 o getPosition()
Returns the position.
 o getProperty()
Returns the property.
 o getValue()
Returns the value.

Constructors

 o 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.
 o 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.

Methods

 o getProperty
 public String getProperty()
Returns the property.

 o getPosition
 public int getPosition()
Returns the position.

 o getValue
 public Object getValue()
Returns the value.


All Packages  Class Hierarchy  This Package  Previous  Next  Index