Package adams.gui.goe
Class ConfigurableEnumerationItemEditor
- java.lang.Object
-
- java.beans.PropertyEditorSupport
-
- adams.gui.goe.ConfigurableEnumerationItemEditor
-
- All Implemented Interfaces:
MultiSelectionEditor,PropertyEditor
public class ConfigurableEnumerationItemEditor extends PropertyEditorSupport implements MultiSelectionEditor
A PropertyEditor that displays Item objects used byConfigurableEnumeration.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Constructor Summary
Constructors Constructor Description ConfigurableEnumerationItemEditor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAsText()Gets the current value as text.StringgetJavaInitializationString()Returns a description of the property value as java source.Object[]getSelectedObjects(Container parent)Returns the selected objects.String[]getTags()Gets the list of tags that can be selected from.voidsetAsText(String text)Sets the current property value as text.-
Methods inherited from class java.beans.PropertyEditorSupport
addPropertyChangeListener, firePropertyChange, getCustomEditor, getSource, getValue, isPaintable, paintValue, removePropertyChangeListener, setSource, setValue, supportsCustomEditor
-
-
-
-
Method Detail
-
getJavaInitializationString
public String getJavaInitializationString()
Returns a description of the property value as java source.- Specified by:
getJavaInitializationStringin interfacePropertyEditor- Overrides:
getJavaInitializationStringin classPropertyEditorSupport- Returns:
- a value of type 'String'
-
getAsText
public String getAsText()
Gets the current value as text.- Specified by:
getAsTextin interfacePropertyEditor- Overrides:
getAsTextin classPropertyEditorSupport- Returns:
- a value of type 'String'
-
setAsText
public void setAsText(String text)
Sets the current property value as text.- Specified by:
setAsTextin interfacePropertyEditor- Overrides:
setAsTextin classPropertyEditorSupport- Parameters:
text- the text of the selected tag.
-
getTags
public String[] getTags()
Gets the list of tags that can be selected from.- Specified by:
getTagsin interfacePropertyEditor- Overrides:
getTagsin classPropertyEditorSupport- Returns:
- an array of string tags.
-
getSelectedObjects
public Object[] getSelectedObjects(Container parent)
Returns the selected objects.- Specified by:
getSelectedObjectsin interfaceMultiSelectionEditor- Parameters:
parent- the parent container- Returns:
- the objects
-
-