public class ChangeAdapter extends Object implements ChangeListener
ChangeListener.AlwaysVetoListener, ChangeListener.ChangeEventRecorder, ChangeListener.LoggingListener
ALWAYS_VETO, LOG_TO_OUT
Constructor and Description |
---|
ChangeAdapter() |
Modifier and Type | Method and Description |
---|---|
void |
postChange(ChangeEvent ce)
Called when a change has just taken place.
|
void |
preChange(ChangeEvent ce)
Called before a change takes place.
|
public ChangeAdapter()
public void preChange(ChangeEvent ce) throws ChangeVetoException
ChangeListener
Called before a change takes place.
This is your chance to stop the change by throwing a ChangeVetoException. This method does not indicate that the change will definitely take place, so it is not recomended that you take any positive action within this handler.
preChange
in interface ChangeListener
ce
- An event encapsulating the change which is about
to take place.ChangeVetoException
- Description of Exceptionpublic void postChange(ChangeEvent ce)
ChangeListener
Called when a change has just taken place.
This method is the place to perform any behavior in response to the change event.
postChange
in interface ChangeListener
ce
- An event encapsulating the change which has
occured.Copyright © 2014 BioJava. All rights reserved.