Interface GUIEditor

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      org.eclipse.swt.widgets.Control getControl()
      Returns the actual SWT control of the editor.
      java.lang.Object getValue()
      Returns the value of the editor.
      boolean isPseudoEditor()
      Returns whether this representation actually holds an editable SWT element or whether it is a pseudo editor such as a Label.
      void refreshContents()
      Refreshes the contents of this editor.
      void setValue​(java.lang.Object object)
      Changes the value of the editor.
    • Method Detail

      • getControl

        org.eclipse.swt.widgets.Control getControl()
        Returns the actual SWT control of the editor.
        Returns:
        the control
      • getValue

        java.lang.Object getValue()
        Returns the value of the editor.
        Returns:
        the value
      • setValue

        void setValue​(java.lang.Object object)
        Changes the value of the editor.
        Parameters:
        object - the new value
      • isPseudoEditor

        boolean isPseudoEditor()
        Returns whether this representation actually holds an editable SWT element or whether it is a pseudo editor such as a Label.
        Returns:
        true if it is a pseudo editor, false else
      • refreshContents

        void refreshContents()
        Refreshes the contents of this editor.