org.davic.mpeg.sections
Class SectionAvailableEvent

java.lang.Object
  extended by java.util.EventObject
      extended by org.davic.mpeg.sections.SectionFilterEvent
          extended by org.davic.mpeg.sections.SectionAvailableEvent
All Implemented Interfaces:
java.io.Serializable

public class SectionAvailableEvent
extends SectionFilterEvent

This class is used to report a complete section being filtered. It is generated by SimpleSectionFilter, TableSectionFilter and RingSectionFilter objects when a section matching the filtering pattern is successfully filtered from the transport stream.

See Also:
Serialized Form

Constructor Summary
SectionAvailableEvent(SectionFilter f, java.lang.Object appData)
          This constructs a SectionAvailable event for the specified SectionFilter object.
 
Method Summary
 java.lang.Object getSource()
          This returns the SectionFilter object which filtered the data.
 
Methods inherited from class org.davic.mpeg.sections.SectionFilterEvent
getAppData
 
Methods inherited from class java.util.EventObject
toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SectionAvailableEvent

public SectionAvailableEvent(SectionFilter f,
                             java.lang.Object appData)
This constructs a SectionAvailable event for the specified SectionFilter object.

Parameters:
f - the SectionFilter object which filtered the data.
appData - application data that was passed to the startFiltering method
Method Detail

getSource

public java.lang.Object getSource()
This returns the SectionFilter object which filtered the data.

Overrides:
getSource in class SectionFilterEvent