| com.flexive.shared.value.renderer.FxValueFormatter
FxValueFormatter | public interface FxValueFormatter (Code) | | Interface for a FxValue formatter. Formatters provide a datatype-specific and
locale-specific way for rendering FxValue instances to the user interface.
Formatters are usually not instantiated directly, but used by a
FxValueRenderer to format FxValues. A FxValueRenderer for a given language
can be retrieved using the
FxValueRendererFactory .
author: Daniel Lichtenberger (daniel.lichtenberger@flexive.com), UCS - unique computing solutions gmbh (http://www.ucs.at) version: $Rev: 181 $ |
Method Summary | |
String | format(ValueType container, DataType value, FxLanguage outputLanguage) Formats a FxValue object.
Parameters: container - the FxValue container object Parameters: value - the value to be formatted. Parameters: outputLanguage - the language to be used for rendering the value. |
format | String format(ValueType container, DataType value, FxLanguage outputLanguage)(Code) | | Formats a FxValue object.
Parameters: container - the FxValue container object Parameters: value - the value to be formatted. Parameters: outputLanguage - the language to be used for rendering the value. This mayor may not be the language for which the value was stored in the FxValue container. the formatted value |
|
|