All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.sun.jaw.reference.common.Modification

java.lang.Object
   |
   +----com.sun.jaw.reference.common.Modification

public class Modification
extends Object
implements Serializable
This class is used for representing a modification for a property.

See Also:
ModificationList

Constructor Index

 o Modification(String, Object)
Allows a Modification to be created for a non-indexed property.
 o Modification(String, Object, int)
Allows a Modification to be created for an indexed property.
 o Modification(String, Object, String)
Allows a Modification containing an operator to be created for a non-indexed property.
 o Modification(String, Object, String, int)
Allows a Modification containing an operator to be created for an indexed property.

Method Index

 o getOperator()
Returns the name of the operator to be applied.
 o getPosition()
Returns the position.
 o getProperty()
Returns the property.
 o getValue()
Returns the value.

Constructors

 o Modification
 public Modification(String property,
                     Object value)
Allows a Modification to be created for a non-indexed property.

 o Modification
 public Modification(String property,
                     Object value,
                     int pos)
Allows a Modification to be created for an indexed property.

 o Modification
 public Modification(String property,
                     Object value,
                     String operator)
Allows a Modification containing an operator to be created for a non-indexed property.

 o Modification
 public Modification(String property,
                     Object value,
                     String oper,
                     int pos)
Allows a Modification containing an operator to be created for an indexed property.

Methods

 o getProperty
 public String getProperty()
Returns the property.

 o getValue
 public Object getValue()
Returns the value.

 o getPosition
 public int getPosition()
Returns the position.

 o getOperator
 public String getOperator()
Returns the name of the operator to be applied.


All Packages  Class Hierarchy  This Package  Previous  Next  Index