Interface JaxoCommunicator
- All Superinterfaces:
ActionListener, EventListener
- All Known Implementing Classes:
JaxoMainPanel
Communicate events between panel components.
- Since:
- 2.1
-
Method Summary
Modifier and TypeMethodDescriptionvoiddistributePropertyChange(String name, boolean oldValue, boolean newValue) Distributes a property change to all sub-panels.voiddistributePropertyChange(String name, int oldValue, int newValue) Distributes a property change to all sub-panels.voiddistributePropertyChange(String name, Object oldValue, Object newValue) Distributes a property change to all sub-panels.voidshutdown(int exitStatus) Finalize a general shutdown on all sub-components.Methods inherited from interface ActionListener
actionPerformed
-
Method Details
-
distributePropertyChange
-
distributePropertyChange
Distributes a property change to all sub-panels.- Parameters:
name- the name of the property. Not null.oldValue- the old value of the property.newValue- the new value of the property.
-
distributePropertyChange
Distributes a property change to all sub-panels.- Parameters:
name- the name of the property. Not null.oldValue- the old value of the property.newValue- the new value of the property.
-
shutdown
void shutdown(int exitStatus) Finalize a general shutdown on all sub-components.- Parameters:
exitStatus- The exit status code.
-