|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.biojava.utils.ChangeForwarder
public class ChangeForwarder
This is a ChangeListener that is designed to adapt events of one type from one source to events of another type emitted by another source. For example, you could adapt events made by edits in a database to being events fired by a sequence implementation.
| Nested Class Summary | |
|---|---|
static class |
ChangeForwarder.Retyper
A ChangeForwarder that systematically uses a given type and wraps the old event. |
| Nested classes/interfaces inherited from interface org.biojava.utils.ChangeListener |
|---|
ChangeListener.AlwaysVetoListener, ChangeListener.ChangeEventRecorder, ChangeListener.LoggingListener |
| Field Summary |
|---|
| Fields inherited from interface org.biojava.utils.ChangeListener |
|---|
ALWAYS_VETO, LOG_TO_OUT |
| Constructor Summary | |
|---|---|
ChangeForwarder(Object source,
ChangeSupport changeSupport)
Create a new ChangeForwarder for forwarding events. |
|
| Method Summary | |
|---|---|
ChangeSupport |
changeSupport()
Return the underlying ChangeSupport instance that can be used to
fire ChangeEvents and mannage listeners. |
protected ChangeEvent |
generateEvent(ChangeEvent ce)
Return the new event to represent the originating event ce. |
Object |
getSource()
Retrieve the 'source' object for ChangeEvents fired by this forwarder. |
void |
postChange(ChangeEvent ce)
Called when a change has just taken place. |
void |
preChange(ChangeEvent ce)
Called before a change takes place. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ChangeForwarder(Object source,
ChangeSupport changeSupport)
source - the new source ObjectchangeSupport - the ChangeSupport managing the listeners| Method Detail |
|---|
public Object getSource()
ChangeEvents fired by this forwarder.
public ChangeSupport changeSupport()
ChangeSupport instance that can be used to
fire ChangeEvents and mannage listeners.
protected ChangeEvent generateEvent(ChangeEvent ce)
throws ChangeVetoException
Return the new event to represent the originating event ce.
The returned ChangeEvent is the event that will be fired, and should be built from information in the original event. If it is null, then no event will be fired.
The default implementation just constructs a ChangeEvent of the same type that chains back to ce.
ce - the originating ChangeEvent
ChangeVetoException - if for any reason this event can't be handled
public void preChange(ChangeEvent ce)
throws ChangeVetoException
ChangeListenerCalled 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 ChangeListenerce - An event encapsulating the change which is about
to take place.
ChangeVetoException - Description of Exceptionpublic void postChange(ChangeEvent ce)
ChangeListenerCalled 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 ChangeListenerce - An event encapsulating the change which has
occured.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||