atg.svc.repository.beans.methods
Class DefaultFieldValueMethods
java.lang.Object
atg.svc.repository.beans.methods.BaseMethods
atg.svc.repository.beans.methods.DefaultFieldValueMethods
public class DefaultFieldValueMethods
- extends BaseMethods
Defines extension methods for the DefaultFieldValue object.
Method Summary |
java.lang.Object |
getValue(atg.svc.repository.beans.DefaultFieldValue pDefaultFieldValue)
Gets the primitive value of the DefaultFieldValue object. |
void |
setValue(java.lang.Object pValue,
atg.svc.repository.beans.DefaultFieldValue pDefaultFieldValue)
Sets the primitive value of the DefaultFieldValue object. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CLASS_VERSION
public static final java.lang.String CLASS_VERSION
- See Also:
- Constant Field Values
DefaultFieldValueMethods
public DefaultFieldValueMethods()
getValue
public java.lang.Object getValue(atg.svc.repository.beans.DefaultFieldValue pDefaultFieldValue)
- Gets the primitive value of the DefaultFieldValue object.
The value is found by using the type to map to a getter object that knows what property to get the value from.
- Parameters:
pDefaultFieldValue
- The DefaultFieldValue to get the value from.
- Returns:
- The primitive value.
setValue
public void setValue(java.lang.Object pValue,
atg.svc.repository.beans.DefaultFieldValue pDefaultFieldValue)
- Sets the primitive value of the DefaultFieldValue object.
The value is set by using the type to map to a getter object that knows what property to get the value from.
- Parameters:
pValue
- The value to set on the DefaultFieldValue object.pDefaultFieldValue
- The DefaultFieldValue to set the value on.