| org.apache.tapestry.ValueEncoder
toClient | String toClient(V value)(Code) | | Converts a value into a client-side representation. The value should be parseable by
ValueEncoder.toValue(String) . In some cases, what is returned is an identifier used to locate
the true object, rather than a string representation of the value itself.
Parameters: value - to be encoded a string representation of the value, or the value's identity |
toValue | V toValue(String clientValue)(Code) | | Converts a client-side representation, provided by
ValueEncoder.toClient(Object) , back into a
server-side value.
Parameters: clientValue - string representation of the value's identity the corresponding entity, or null if not found |
|
|