public interface GUIField<T>
Copyright 2005 Partner Software, Inc.
| Modifier and Type | Method and Description |
|---|---|
void |
doAction()
This does different things depending on the field; for example in a text
field it indicates return was hit.
|
javax.swing.JComponent |
getGUI()
Returns the GUI component for this field.
|
T |
getValue()
Returns the current value for this field.
|
void |
setValue(T newValue)
Sets the current value for this field.
|
void |
valueChanged(T newValue)
When the value changes, this is run.
|
javax.swing.JComponent getGUI()
T getValue()
void setValue(T newValue)
void valueChanged(T newValue)
void doAction()