Uses of Interface
org.tentackle.fx.ValueTranslator
-
Packages that use ValueTranslator Package Description org.tentackle.fx Extended FX layer.org.tentackle.fx.component Extended FX components.org.tentackle.fx.component.delegate Delegates implementing tentackle features for FX components.org.tentackle.fx.translate FX value translators. -
-
Uses of ValueTranslator in org.tentackle.fx
Methods in org.tentackle.fx that return ValueTranslator Modifier and Type Method Description <M,V>
ValueTranslator<V,M>DefaultFxFactory. createValueTranslator(java.lang.Class<M> modelClass, java.lang.Class<V> viewClass, FxComponent component)<M,V>
ValueTranslator<V,M>FxFactory. createValueTranslator(java.lang.Class<M> modelClass, java.lang.Class<V> viewClass, FxComponent component)Creates a value translator.protected ValueTranslator<?,?>FxTextComponentDelegate. createValueTranslator(java.lang.Class<?> type)ValueTranslator<?,?>FxComponent. getValueTranslator()Gets the value translator.ValueTranslator<?,?>FxComponentDelegate. getValueTranslator()Methods in org.tentackle.fx with parameters of type ValueTranslator Modifier and Type Method Description voidFxComponent. setValueTranslator(ValueTranslator<?,?> valueTranslator)Sets a value translator.voidFxComponentDelegate. setValueTranslator(ValueTranslator<?,?> valueTranslator) -
Uses of ValueTranslator in org.tentackle.fx.component
Methods in org.tentackle.fx.component that return ValueTranslator Modifier and Type Method Description ValueTranslator<?,?>FxCheckBox. getValueTranslator()ValueTranslator<?,?>FxChoiceBox. getValueTranslator()ValueTranslator<?,?>FxColorPicker. getValueTranslator()ValueTranslator<?,?>FxComboBox. getValueTranslator()ValueTranslator<?,?>FxDatePicker. getValueTranslator()ValueTranslator<?,?>FxHTMLEditor. getValueTranslator()ValueTranslator<?,?>FxListView. getValueTranslator()ValueTranslator<?,?>FxPasswordField. getValueTranslator()ValueTranslator<?,?>FxRadioButton. getValueTranslator()ValueTranslator<?,?>FxTableView. getValueTranslator()ValueTranslator<?,?>FxTextArea. getValueTranslator()ValueTranslator<?,?>FxTextField. getValueTranslator()ValueTranslator<?,?>FxToggleButton. getValueTranslator()ValueTranslator<?,?>FxTreeTableView. getValueTranslator()ValueTranslator<?,?>FxTreeView. getValueTranslator()Methods in org.tentackle.fx.component with parameters of type ValueTranslator Modifier and Type Method Description voidFxCheckBox. setValueTranslator(ValueTranslator<?,?> valueTranslator)voidFxChoiceBox. setValueTranslator(ValueTranslator<?,?> valueTranslator)voidFxColorPicker. setValueTranslator(ValueTranslator<?,?> valueTranslator)voidFxComboBox. setValueTranslator(ValueTranslator<?,?> valueTranslator)voidFxDatePicker. setValueTranslator(ValueTranslator<?,?> valueTranslator)voidFxHTMLEditor. setValueTranslator(ValueTranslator<?,?> valueTranslator)voidFxListView. setValueTranslator(ValueTranslator<?,?> valueTranslator)voidFxPasswordField. setValueTranslator(ValueTranslator<?,?> valueTranslator)voidFxRadioButton. setValueTranslator(ValueTranslator<?,?> valueTranslator)voidFxTableView. setValueTranslator(ValueTranslator<?,?> valueTranslator)voidFxTextArea. setValueTranslator(ValueTranslator<?,?> valueTranslator)voidFxTextField. setValueTranslator(ValueTranslator<?,?> valueTranslator)voidFxToggleButton. setValueTranslator(ValueTranslator<?,?> valueTranslator)voidFxTreeTableView. setValueTranslator(ValueTranslator<?,?> valueTranslator)voidFxTreeView. setValueTranslator(ValueTranslator<?,?> valueTranslator) -
Uses of ValueTranslator in org.tentackle.fx.component.delegate
Methods in org.tentackle.fx.component.delegate that return ValueTranslator Modifier and Type Method Description protected ValueTranslator<?,?>FxPasswordFieldDelegate. createValueTranslator(java.lang.Class<?> type) -
Uses of ValueTranslator in org.tentackle.fx.translate
Classes in org.tentackle.fx.translate that implement ValueTranslator Modifier and Type Class Description classAbstractValueTranslator<M,V>Base class of a value translator.classBMoneyStringTranslatorBMoney translator.classBooleanBooleanTranslatorBoolean translator.classByteStringTranslatorByte translator.classCharArrayCharArrayTranslatorIdentity CharArray translator.classColorColorTranslatorA color/color identity translator.classDateStringTranslatorDate translator.classDoubleStringTranslatorDouble translator.classEnumEnumTranslatorIdentity enum translator.classEnumStringTranslator<T extends java.lang.Enum<T>>Abstract base class for enum translators.classFloatStringTranslatorFloat translator.classFractionNumberStringTranslator<M extends java.lang.Number>Abstract base class for fraction number translators.classIdentityTranslator<T>The identity translator base class.classIntegerStringTranslatorInteger translator.classLocalDateStringConverterLocalDate translator.classLocalDateTimeStringConverterLocalDateTime translator.classLocalTimeStringConverterLocalTime translator.classLongStringTranslatorLong translator.classNumberStringTranslator<M extends java.lang.Number>Abstract base class for number translators.classObservableListTranslator<T,C extends java.util.List<T>>List translator.
Used for components maintaining a list of elements, such as a table.classShortStringTranslatorShort translator.classStringColorTranslatorA string/color translator.
Useful for color pickers bound to a string in the model.classStringStringTranslatorIdentity string translator.classValueStringTranslator<M>A value translator for text components.
-