Class TextGUICellEditor.AbstractStringValueConverter<T>
- java.lang.Object
-
- net.ssehub.easy.producer.ui.confModel.TextGUICellEditor.AbstractStringValueConverter<T>
-
- Type Parameters:
T- the value type
- All Implemented Interfaces:
TextGUICellEditor.ValueConverter<T>,org.eclipse.jface.viewers.ICellEditorValidator
- Direct Known Subclasses:
TextGUICellEditor.DoubleValueConverter,TextGUICellEditor.FloatValueConverter,TextGUICellEditor.IntegerValueConverter
- Enclosing class:
- TextGUICellEditor
private abstract static class TextGUICellEditor.AbstractStringValueConverter<T> extends java.lang.Object implements TextGUICellEditor.ValueConverter<T>
Implements an abstract string value converter for turning an object into an UI string.- Author:
- Holger Eichelberger
-
-
Constructor Summary
Constructors Modifier Constructor Description privateAbstractStringValueConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjecttoUI(java.lang.Object value)Turns a property (object) value into UI.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.ssehub.easy.producer.ui.confModel.TextGUICellEditor.ValueConverter
fromUI
-
-
-
-
Method Detail
-
toUI
public java.lang.Object toUI(java.lang.Object value)
Description copied from interface:TextGUICellEditor.ValueConverterTurns a property (object) value into UI.- Specified by:
toUIin interfaceTextGUICellEditor.ValueConverter<T>- Parameters:
value- the value to be turned into the UI- Returns:
- the UI value (typically a string)
-
-