Package org.apache.pivot.wtk
Interface TextInput.TextBindMapping
-
- Enclosing class:
- TextInput
public static interface TextInput.TextBindMapping
Translates between text and context data during data binding.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
toString(java.lang.Object value)
Converts a value from the bind context to a text representation during aComponent.load(Object)
operation.java.lang.Object
valueOf(java.lang.String text)
Converts a text string to a value to be stored in the bind context during aComponent.store(Object)
operation.
-
-
-
Method Detail
-
toString
java.lang.String toString(java.lang.Object value)
Converts a value from the bind context to a text representation during aComponent.load(Object)
operation.- Parameters:
value
- The value retrieved from the bound object.- Returns:
- A text representation of this value for display.
-
valueOf
java.lang.Object valueOf(java.lang.String text)
Converts a text string to a value to be stored in the bind context during aComponent.store(Object)
operation.- Parameters:
text
- The current text from the control.- Returns:
- A value suitable for storage in the bound object.
-
-