| jaxx.runtime.JAXXObject
JAXXObject | public interface JAXXObject (Code) | | The JAXXObject interface is implemented by all classes produced by the JAXX compiler.
|
applyDataBinding | public void applyDataBinding(String id)(Code) | | |
firePropertyChange | public void firePropertyChange(String name, Object oldValue, Object newValue)(Code) | | All JAXXObject implements are capable of broadcasting PropertyChangeEvent , and
furthermore (for technical reasons) must allow code in outside packages, specifically the JAXX runtime,
to trigger these events.
Parameters: name - the name of the property which changed Parameters: oldValue - the old value of the property Parameters: newValue - the new value of the property |
getObjectById | public Object getObjectById(String id)(Code) | | Retrieves an object defined in an XML tag by its ID.
Parameters: id - the id of the component to retrieve |
processDataBinding | public void processDataBinding(String dest)(Code) | | Processes a data binding by name. Data binding names are comprised of an object ID and a property name:
for example, the data binding in the tag <JLabel id='label' text='{foo.getText()}'/> is
named "label.text" . Processing a data binding causes it to reevaluate its expression, in this
case foo.getText() .
Parameters: dest - the name of the data binding to run |
removeDataBinding | public void removeDataBinding(String id)(Code) | | |
|
|