java.awt.event.ActionListener
, java.util.EventListener
JaxoMainPanel
public interface JaxoCommunicator
extends java.awt.event.ActionListener
Modifier and Type | Method | Description |
---|---|---|
void |
distributePropertyChange(java.lang.String name,
boolean oldValue,
boolean newValue) |
Distributes a property change to all sub-panels.
|
void |
distributePropertyChange(java.lang.String name,
int oldValue,
int newValue) |
Distributes a property change to all sub-panels.
|
void |
distributePropertyChange(java.lang.String name,
java.lang.Object oldValue,
java.lang.Object newValue) |
Distributes a property change to all sub-panels.
|
void |
shutdown(int exitStatus) |
Finalize a general shutdown on all sub-components.
|
void distributePropertyChange(java.lang.String name, java.lang.Object oldValue, java.lang.Object newValue)
name
- the name of the property. Not null.oldValue
- the old value of the property.newValue
- the new value of the property.void distributePropertyChange(java.lang.String name, boolean oldValue, boolean newValue)
name
- the name of the property. Not null.oldValue
- the old value of the property.newValue
- the new value of the property.void distributePropertyChange(java.lang.String name, int oldValue, int newValue)
name
- the name of the property. Not null.oldValue
- the old value of the property.newValue
- the new value of the property.void shutdown(int exitStatus)
exitStatus
- The exit status code.Licensed under GPL. For more information, see http://jaxodraw.sourceforge.net/license.html or the LICENSE file in the jaxodraw distribution.