new ChangeForwarder.Retyper(source, cs, Annotation.PROPERTY)
insteadpublic static class Annotatable.AnnotationForwarder extends ChangeForwarder
A helper class so that you don't have to worry about forwarding events from the Annotation object to the Annotatable one.
Once a listener is added to your Annotatable that is interested in ANNOTATION events, then instantiate one of these and add it as a listener to the annotation object. It will forward the events to your listeners and translate them accordingly.
This will ease the pain of letting your Annotatable tell its listeners about changes in the Annotation.ChangeForwarder.Retyper
ChangeListener.AlwaysVetoListener, ChangeListener.ChangeEventRecorder, ChangeListener.LoggingListener
ALWAYS_VETO, LOG_TO_OUT
Constructor and Description |
---|
Annotatable.AnnotationForwarder(Object source,
ChangeSupport cs)
Deprecated.
Create a new AnnotationForwarder that will forward events for a source
using a change support.
|
Modifier and Type | Method and Description |
---|---|
protected ChangeEvent |
generateEvent(ChangeEvent ce)
Deprecated.
Return the new event to represent the originating event ce.
|
changeSupport, getSource, postChange, preChange
public Annotatable.AnnotationForwarder(Object source, ChangeSupport cs)
source
- the Object to forward events on behalf ofcs
- the change support that manages listenersprotected ChangeEvent generateEvent(ChangeEvent ce)
ChangeForwarder
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.
generateEvent
in class ChangeForwarder
ce
- the originating ChangeEventCopyright © 2014 BioJava. All rights reserved.