| org.w3c.jigadm.editors.AttributeEditorInterface
All known Subclasses: org.w3c.jigadm.editors.AttributeEditor,
AttributeEditorInterface | public interface AttributeEditorInterface (Code) | | |
addAttributeListener | public void addAttributeListener(AttributeListener el)(Code) | | Add a Listener to this editor.
Parameters: el - a listener |
clearChanged | public void clearChanged()(Code) | | set the current value to be the original value, ie: changed
must return false after a reset.
|
getValue | public Object getValue()(Code) | | Get the current value of the edited value
an object or null if the object was notinitialized |
hasChanged | public boolean hasChanged()(Code) | | Tells if the edited value has changed
true if the value changed. |
removeAttributeListener | public void removeAttributeListener(AttributeListener el)(Code) | | Remove the listener from this editor.
Parameters: el - the listener to be removed. |
resetChanges | public void resetChanges()(Code) | | reset the changes (if any)
|
setValue | public void setValue(Object o)(Code) | | Set the value of the edited value
Parameters: o - the new value. |
|
|