Interface TextGUICellEditor.ValueConverter<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      T fromUI​(java.lang.Object value)
      Turns a UI value into the property (object) value.
      java.lang.Object toUI​(java.lang.Object value)
      Turns a property (object) value into UI.
      • Methods inherited from interface org.eclipse.jface.viewers.ICellEditorValidator

        isValid
    • Method Detail

      • fromUI

        T fromUI​(java.lang.Object value)
        Turns a UI value into the property (object) value.
        Parameters:
        value - the UI value
        Returns:
        the property (object) value
      • toUI

        java.lang.Object toUI​(java.lang.Object value)
        Turns a property (object) value into UI.
        Parameters:
        value - the value to be turned into the UI
        Returns:
        the UI value (typically a string)