Uses of Interface
org.freehep.record.loop.event.RecordListener

Packages that use RecordListener
org.freehep.record.loop   
org.freehep.record.loop.event This package contains event classes and corresponding listener interfaces for events fired by the implementation of the SequentialRecordLoop interface. 
org.freehep.record.loop.examples This package contains examples on how the org.freehep.record.loop package can be used. 
 

Uses of RecordListener in org.freehep.record.loop
 

Methods in org.freehep.record.loop that return RecordListener
 RecordListener SequentialRecordLoopImpl.getRecordListener()
           
 

Methods in org.freehep.record.loop with parameters of type RecordListener
 void SequentialRecordLoopImpl.addRecordListener(RecordListener listener)
           
 void SequentialRecordLoopImpl.removeRecordListener(RecordListener listener)
           
 

Uses of RecordListener in org.freehep.record.loop.event
 

Subinterfaces of RecordListener in org.freehep.record.loop.event
 interface ChainableRecordListener
          This interface should be implemented by any RecordListener which wants to be explicity part of a chain of listeners.
 

Classes in org.freehep.record.loop.event that implement RecordListener
 class ChainableRecordListenerDecorator
          This class decorates an RecordListener object so that the methods of another RecordListener object are executed in succession to its own method, thus creating a chain of listeners.
 class RecordAdapter
          It is an implementation of the RecordListener interface where all the methods are empty.
 

Methods in org.freehep.record.loop.event that return RecordListener
 RecordListener ChainableRecordListenerDecorator.getDecoratedListener()
          Returns the RecordListener that this object decorates.
 RecordListener RecordListenerManager.getRecordListener()
          Returns this objects RecordListener if there is one.
 

Methods in org.freehep.record.loop.event with parameters of type RecordListener
 void RecordListenerManager.addRecordListener(RecordListener listener)
          Adds the specified RecordListener to this object.
 void RecordListenerManager.removeRecordListener(RecordListener listener)
          Removes the specified listener from this object if it is this objects listener, otherwise it does nothing.
 

Constructors in org.freehep.record.loop.event with parameters of type RecordListener
ChainableRecordListenerDecorator(RecordListener decorated)
          Create an instance of this class that decorates the specified object.
 

Uses of RecordListener in org.freehep.record.loop.examples
 

Classes in org.freehep.record.loop.examples that implement RecordListener
 class EchoStrings
          This class gives the most basic example of how the org.freehep.record.loop package can be used.
 class RejectEvenStrings
          This class is an example of how to RecordListener objects can be used to do conditional processing of events by rejecting certain records that are supplied.
 class Strings2Words
          This class is am example of how to chain RecordListener objects can be chained.
 



Copyright © 2000-2007 FreeHEP. All Rights Reserved.