public interface TableCell
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getCurrentStringValue()
Returns a string value for the current object
|
java.lang.Object |
getCurrentValue()
Deprecated.
This method has been deprecated because it returns the internal Ebase class SystemValue.
The javadoc for this method is incorrect. This method is now unsupported and may be removed in a future release.
Please use getCurrentValue2 instead.
|
java.lang.Object |
getCurrentValue2()
Returns the current value of the cell.
|
java.lang.String |
getOriginalStringValue()
Returns a string value for the "original" object
|
java.lang.Object |
getOriginalValue()
Deprecated.
This method has been deprecated because it returns the internal Ebase class SystemValue.
The javadoc for this method is incorrect. This method is now unsupported and may be removed in a future release.
Please use getOriginalValue2 instead.
|
java.lang.Object |
getOriginalValue2()
Returns the original value of the cell.
|
java.lang.String |
getSourceFieldId()
Returns the source field identifier for which this cell holds the value for a specific row in the table.
|
void |
setOriginalValue(java.lang.Object value)
Sets/Resets the original value of this cell.
|
void |
setValue(java.lang.Object value)
Sets the current value of this cell.
|
boolean |
valueHasChanged()
Checks if the current value and the original value are different.
|
java.lang.String getSourceFieldId()
java.lang.Object getCurrentValue()
java.lang.Object getCurrentValue2()
ResourceRequestInterface.getFieldValue2(String)
java.lang.Object getOriginalValue()
java.lang.Object getOriginalValue2()
ResourceRequestInterface.getFieldValue2(String)
void setValue(java.lang.Object value) throws com.ebasetech.ufs.kernel.FormValueConversionException
value
- may be any of the types accepted by UFS. This will be mapped to one
of the standard UFS types and will be returned as such in subsequent updates.com.ebasetech.ufs.kernel.FormValueConversionException
void setOriginalValue(java.lang.Object value) throws com.ebasetech.ufs.kernel.FormValueConversionException
value
- may be any of the types accepted by UFS. This will be mapped to one
of the standard UFS types and will be returned as such in subsequent updates.com.ebasetech.ufs.kernel.FormValueConversionException
java.lang.String getCurrentStringValue()
boolean valueHasChanged()
java.lang.String getOriginalStringValue()