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
-
Modification(String, Object)
- Allows a Modification to be created for a non-indexed property.
-
Modification(String, Object, int)
- Allows a Modification to be created for an indexed property.
-
Modification(String, Object, String)
- Allows a Modification containing an operator to be created
for a non-indexed property.
-
Modification(String, Object, String, int)
- Allows a Modification containing an operator to be created
for an indexed property.
-
getOperator()
- Returns the name of the operator to be applied.
-
getPosition()
- Returns the position.
-
getProperty()
- Returns the property.
-
getValue()
- Returns the value.
Modification
public Modification(String property,
Object value)
- Allows a Modification to be created for a non-indexed property.
Modification
public Modification(String property,
Object value,
int pos)
- Allows a Modification to be created for an indexed property.
Modification
public Modification(String property,
Object value,
String operator)
- Allows a Modification containing an operator to be created
for a non-indexed property.
Modification
public Modification(String property,
Object value,
String oper,
int pos)
- Allows a Modification containing an operator to be created
for an indexed property.
getProperty
public String getProperty()
- Returns the property.
getValue
public Object getValue()
- Returns the value.
getPosition
public int getPosition()
- Returns the position.
getOperator
public String getOperator()
- Returns the name of the operator to be applied.
All Packages Class Hierarchy This Package Previous Next Index