oracle.owb.foundation.domain
Interface ScalarValue
- All Superinterfaces:
- Typed, Value
- All Known Subinterfaces:
- PrimitiveProperty, PrimitiveValue, ReferenceProperty, ReferenceValue, ScalarProperty
- public interface ScalarValue
- extends Value
ScalarValue is value which is not a collection.
- Author:
- Xiaoge Zhang
|
Method Summary |
java.lang.Object |
getValue()
Get the value. |
void |
setValue(java.lang.Object value)
Set the value. |
| Methods inherited from interface oracle.owb.foundation.domain.Typed |
getType |
getValue
public java.lang.Object getValue()
- Get the value.
- Returns:
- Object - the real value.
- See Also:
setValue(java.lang.Object)
setValue
public void setValue(java.lang.Object value)
throws TypeMismatchException
- Set the value.
- Parameters:
value - - the real value- Throws:
TypeMismatchException - - value is incompartible type- See Also:
getValue()