| java.lang.Object org.w3c.tools.forms.FormField
FormField | abstract public class FormField (Code) | | |
Method Summary | |
abstract Component | getEditor() Get this field graphical editor. | public String | getName() Get the field's name. | public String | getTitle() Get the field's title. | abstract public Object | getValue() Get this field value's in its native type. | protected void | gotFocus() Our editor is telling us that it got the focus, propagate to manager. | abstract public void | setValue(Object value, boolean notify, boolean update) Set this field value. | public void | setValue(Object value, boolean update) Set this field's value, notifying the manager. |
getEditor | abstract Component getEditor()(Code) | | Get this field graphical editor.
|
getTitle | public String getTitle()(Code) | | Get the field's title.
|
getValue | abstract public Object getValue()(Code) | | Get this field value's in its native type.
|
gotFocus | protected void gotFocus()(Code) | | Our editor is telling us that it got the focus, propagate to manager.
|
setValue | abstract public void setValue(Object value, boolean notify, boolean update) throws IllegalFieldValueException(Code) | | Set this field value.
Parameters: value - This field's new value. Parameters: notify - Should we notify the manager for this change ? Parameters: update - Update the editor view, if true. exception: IllegalFieldValueException - If the field rejected the value. |
|
|