Uses of Interface
java.util.EventListener

Packages that use EventListener
java.awt Contains all of the classes for creating user interfaces and for painting graphics and images. 
java.awt.event Provides interfaces and classes for dealing with different types of events fired by AWT components. 
java.beans Contains classes for run-time Java Beans support. 
java.util Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array). 
javax.media   
javax.net.ssl Provides classes for the secure socket package. 
javax.tv.media   
javax.tv.service   
javax.tv.service.guide   
javax.tv.service.navigation   
javax.tv.service.selection   
javax.tv.service.transport   
org.davic.media Provides various extensions to the Java Media Framework for the control of TV oriented audio / video content. 
org.davic.mpeg.sections Provides access to MPEG-2 section filtering. 
org.davic.net.tuning Provides access to tuning - MPEG multiplex selection. 
org.davic.resources Provides a framework for scarce resource management. 
org.dvb.application Provides access to lists of applications which are available in this context and the ability to launch those applications. 
org.dvb.dsmcc Provides extended access to files carried in the broadcast stream. 
org.dvb.event Provides access to user input events before they are processed through the event mechanism of the java.awt package. 
org.dvb.media Provides DVB specific extensions to the Java Media Framework. 
org.dvb.net.rc Provides session management for bi-directional IP connections which are session based from the point of view of an application. 
org.dvb.ui Provides extended graphics functionality. 
org.dvb.user Provides access to settings and preferences configured by the end-user. 
org.havi.ui   
org.havi.ui.event   
org.ocap.diagnostics   
org.ocap.dvr Provides extension classes and interfaces to the shared DVR APIs. 
org.ocap.dvr.storage Provides management and representation of storage for stored media. 
org.ocap.hardware The org.ocap.hardware package provides representations of several aspects of the hardware. 
org.ocap.hardware.device Provides extension classes and interfaces related to accessing and controlling certain device parameters that are normally controlled by a device manufacturer specific application. 
org.ocap.hn Provides interfaces and classes for representing a home network. 
org.ocap.hn.content   
org.ocap.media The org.ocap.media package is a collection of classes and interfaces for controlling access to various kinds of media components 
org.ocap.shared.dvr The shared DVR API for scheduling and managing recording requests. 
org.ocap.si The org.ocap.si package represents MPEG-2 PSI data. 
org.ocap.storage The org.ocap.storage package represents storage devices. 
org.ocap.system

This API is used to access system modules. 

org.ocap.system.event

The org.ocap.system.event package defines various system events. 

org.ocap.ui.event Extensions to HAVi User Interface Event classes, including OCAP specific remote control events and multiscreen management events. 
 

Uses of EventListener in java.awt
 

Classes in java.awt that implement EventListener
 class AWTEventMulticaster
          A class which implements efficient and thread-safe multi-cast event dispatching for the AWT events defined in the java.awt.event package.
 

Methods in java.awt that return EventListener
static EventListener[] AWTEventMulticaster.getListeners(EventListener l, Class listenerType)
          Returns an array of all the objects chained as FooListeners by the specified java.util.EventListener.
 

Methods in java.awt with parameters of type EventListener
static EventListener[] AWTEventMulticaster.getListeners(EventListener l, Class listenerType)
          Returns an array of all the objects chained as FooListeners by the specified java.util.EventListener.
 

Uses of EventListener in java.awt.event
 

Subinterfaces of EventListener in java.awt.event
 interface ActionListener
          The listener interface for receiving action events.
 interface AdjustmentListener
          The listener interface for receiving adjustment events.
 interface AWTEventListener
          The listener interface for receiving notification of events dispatched to objects that are instances of Component or MenuComponent or their subclasses.
 interface ComponentListener
          The listener interface for receiving component events.
 interface ContainerListener
          The listener interface for receiving container events.
 interface FocusListener
          The listener interface for receiving keyboard focus events on a component.
 interface InputMethodListener
          The listener interface for receiving input method events.
 interface ItemListener
          The listener interface for receiving item events.
 interface KeyListener
          The listener interface for receiving keyboard events (keystrokes).
 interface MouseListener
          The listener interface for receiving "interesting" mouse events (press, release, click, enter, and exit) on a component.
 interface MouseMotionListener
          The listener interface for receiving mouse motion events on a component.
 interface MouseWheelListener
          The listener interface for receiving mouse wheel events on a component.
 interface TextListener
          The listener interface for receiving text events.
 interface WindowFocusListener
          The listener interface for receiving WindowEvents, including WINDOW_GAINED_FOCUS and WINDOW_LOST_FOCUS events.
 interface WindowListener
          The listener interface for receiving window events.
 

Classes in java.awt.event that implement EventListener
 class AWTEventListenerProxy
          A class which extends the EventListenerProxy, specifically for adding an AWTEventListener for a specific event mask.
 class ComponentAdapter
          An abstract adapter class for receiving component events.
 class ContainerAdapter
          An abstract adapter class for receiving container events.
 class FocusAdapter
          An abstract adapter class for receiving keyboard focus events.
 class KeyAdapter
          An abstract adapter class for receiving keyboard events.
 class MouseAdapter
          An abstract adapter class for receiving mouse events.
 class MouseMotionAdapter
          An abstract adapter class for receiving mouse motion events.
 class WindowAdapter
          An abstract adapter class for receiving window events.
 

Uses of EventListener in java.beans
 

Subinterfaces of EventListener in java.beans
 interface PropertyChangeListener
          A "PropertyChange" event gets fired whenever a bean changes a "bound" property.
 interface VetoableChangeListener
          A VetoableChange event gets fired whenever a bean changes a "constrained" property.
 

Uses of EventListener in java.util
 

Classes in java.util that implement EventListener
 class EventListenerProxy
          An abstract wrapper class for an EventListener class which associates a set of additional parameters with the listener.
 

Methods in java.util that return EventListener
 EventListener EventListenerProxy.getListener()
           
 

Constructors in java.util with parameters of type EventListener
EventListenerProxy(EventListener listener)
           
 

Uses of EventListener in javax.media
 

Subinterfaces of EventListener in javax.media
 interface ControllerListener
           
 interface GainChangeListener
           
 

Uses of EventListener in javax.net.ssl
 

Subinterfaces of EventListener in javax.net.ssl
 interface HandshakeCompletedListener
          This interface is implemented by any class which wants to receive notifications about the completion of an SSL protocol handshake on a given SSL connection.
 interface SSLSessionBindingListener
          This interface is implemented by objects which want to know when they are being bound or unbound from a SSLSession.
 

Uses of EventListener in javax.tv.media
 

Subinterfaces of EventListener in javax.tv.media
 interface MediaSelectListener
          The MediaSelectListener interface is implemented by applications in order to receive notification of selection operations on a MediaSelectControl.
 

Uses of EventListener in javax.tv.service
 

Subinterfaces of EventListener in javax.tv.service
 interface SIChangeListener
          This is the super-interface of the interfaces by which applications may receive notification of changes to SIElement data.
 

Uses of EventListener in javax.tv.service.guide
 

Subinterfaces of EventListener in javax.tv.service.guide
 interface ProgramScheduleListener
          This interface is implemented by applications wishing to receive notification of changes to ProgramSchedule data.
 

Uses of EventListener in javax.tv.service.navigation
 

Subinterfaces of EventListener in javax.tv.service.navigation
 interface ServiceComponentChangeListener
          This interface is implemented by applications wishing to receive notification of changes to ServiceComponent data.
 

Uses of EventListener in javax.tv.service.selection
 

Subinterfaces of EventListener in javax.tv.service.selection
 interface ServiceContextListener
          The ServiceContextListener interface is implemented by applications wishing to receive events related to service contexts.
 

Uses of EventListener in javax.tv.service.transport
 

Subinterfaces of EventListener in javax.tv.service.transport
 interface NetworkChangeListener
          This interface is implemented by applications wishing to receive notification of changes to Network data.
 interface ServiceDetailsChangeListener
          This interface is implemented by applications wishing to receive notification of changes to ServiceDetails data.
 interface TransportStreamChangeListener
          This interface is implemented by applications wishing to receive notification of changes to TransportStream data.
 

Uses of EventListener in org.davic.media
 

Subinterfaces of EventListener in org.davic.media
 interface MediaTimeEventListener
          This interface should be implemented by the application in order to receive the events associated to a media position by the application.
 

Uses of EventListener in org.davic.mpeg.sections
 

Subinterfaces of EventListener in org.davic.mpeg.sections
 interface SectionFilterListener
          The SectionFilterListener interface is implemented by classes which wish to be informed about events relating to section filters.
 

Uses of EventListener in org.davic.net.tuning
 

Subinterfaces of EventListener in org.davic.net.tuning
 interface NetworkInterfaceListener
          The listener used to receive NetworkInterface related events.
 

Uses of EventListener in org.davic.resources
 

Subinterfaces of EventListener in org.davic.resources
 interface ResourceStatusListener
          This interface should be implemented by objects wishing to be informed about changes in status of particular resources.
 

Uses of EventListener in org.dvb.application
 

Subinterfaces of EventListener in org.dvb.application
 interface AppsDatabaseEventListener
          The AppsDatabaseListener class allows an application to monitor the application database so that it can keep an up to date interface without polling the state.
 interface AppStateChangeEventListener
          The AppStateChangeEventListener class allows a launcher application to keep track of applications it launches or other applications running as part of the same service.
 

Uses of EventListener in org.dvb.dsmcc
 

Subinterfaces of EventListener in org.dvb.dsmcc
 interface AsynchronousLoadingEventListener
          Listener for applications which perform asynchronous loading, in order to be informed if the loading is done or if an error has occurred.
 interface NPTListener
          Objects that implement the NPTListener interface can receive NPTStatusEvent and NPTRateChangedEvent events.
 interface ObjectChangeEventListener
          The objects that implements the ObjectChangeEventListener interface can receive ObjectChangeEvent event.
 interface StreamEventListener
          Objects that implement the StreamEventListener interface can receive StreamEvent event.
 

Uses of EventListener in org.dvb.event
 

Subinterfaces of EventListener in org.dvb.event
 interface UserEventListener
          The listener interface for receiving user inputs.
 

Uses of EventListener in org.dvb.media
 

Subinterfaces of EventListener in org.dvb.media
 interface SubtitleListener
          Report that a subtitle event has happened.
 interface VideoFormatListener
          The listener used to receive video format events
 

Uses of EventListener in org.dvb.net.rc
 

Subinterfaces of EventListener in org.dvb.net.rc
 interface ConnectionListener
          This interface should be implemented by objects wishing to be notified about the connection status of a ConnectionRCInterface.
 

Uses of EventListener in org.dvb.ui
 

Subinterfaces of EventListener in org.dvb.ui
 interface TextOverflowListener
          The TextOverflowListener is an interface that an application may implement and register in the DVBTextLayoutManager.
 

Uses of EventListener in org.dvb.user
 

Subinterfaces of EventListener in org.dvb.user
 interface UserPreferenceChangeListener
          An application wishing to be informed of any change to a user preference implements this interface.
 

Uses of EventListener in org.havi.ui
 

Classes in org.havi.ui that implement EventListener
 class HEventMulticaster
          The HEventMulticaster class is intended to assist platform or subclass implementers with the handling of HAVi events.
 

Uses of EventListener in org.havi.ui.event
 

Subinterfaces of EventListener in org.havi.ui.event
 interface HActionListener
          The HActionListener interface enables the reception of HActionEvent events, as generated by objects implementing HActionable.
 interface HAdjustmentListener
          The HAdjustmentListener interface enables the reception of HAdjustmentEvents, as generated by objects implementing HAdjustmentValue.
 interface HBackgroundImageListener
          The listener interface for receiving events related to HBackgroundImage objects.
 interface HFocusListener
          The HFocusListener interface enables the reception of HFocusEvent events, as generated by objects implementing HNavigable.
 interface HItemListener
          The HItemListener interface enables the reception of HItemEvents, as generated by objects implementing HItemValue.
 interface HKeyListener
          The HKeyListener interface enables the reception of HKeyEvent events.
 interface HScreenConfigurationListener
          This listener is used to monitor when the configuration of an HScreenDevice is modified.
 interface HScreenLocationModifiedListener
          This listener is used to monitor when a component, such as an HVideoComponent's on-screen location is modified.
 interface HTextListener
          The HTextListener interface enables the reception of HTextEvents, as generated by objects implementing HTextValue.
 

Uses of EventListener in org.ocap.diagnostics
 

Subinterfaces of EventListener in org.ocap.diagnostics
 interface MIBListener
          This interface represents a listener that can be registered with the MIBManager in order to listen for requests to MIB object encodings.
 

Uses of EventListener in org.ocap.dvr
 

Subinterfaces of EventListener in org.ocap.dvr
 interface RecordingAlertListener
          Listener for Recording Alerts.
 interface RecordingPlaybackListener
          This interface represents a listener that can be added to listen for recording playback start.
 interface TimeShiftListener
          The TimeShiftListener interface is implemented by applications wishing to receive events related to time shift resources.
 

Uses of EventListener in org.ocap.dvr.storage
 

Subinterfaces of EventListener in org.ocap.dvr.storage
 interface FreeSpaceListener
          This interface represents a listener that will be notified when a media volume has reached a specified level of remaining free space.
 

Uses of EventListener in org.ocap.hardware
 

Subinterfaces of EventListener in org.ocap.hardware
 interface PowerModeChangeListener
          The callback interface to be implemented by classes that wish to receive notification when the power mode of the Host Devices changes (for example when the user presses the Power button).
 

Uses of EventListener in org.ocap.hardware.device
 

Subinterfaces of EventListener in org.ocap.hardware.device
 interface VideoOutputPortListener
          The callback interface to be implemented by application classes that wish to receive notification of changes to the status of a VideoOutputPort.
 

Uses of EventListener in org.ocap.hn
 

Subinterfaces of EventListener in org.ocap.hn
 interface NetModuleEventListener
          NetModuleEvent callback interface.
 

Uses of EventListener in org.ocap.hn.content
 

Subinterfaces of EventListener in org.ocap.hn.content
 interface ContentListListener
          Listener interface for classes which are interested in changes to a ContentList.
 

Uses of EventListener in org.ocap.media
 

Subinterfaces of EventListener in org.ocap.media
 interface ClosedCaptioningListener
           This is a listener interface to receive a notification when the state of closed-captioning has changed or a new closed-captioning service (C1 to C4, T1 to T4) is selected.
 interface MediaTimerListener
          This is a listener to inform events on a MediaTimer object.
 interface VBIFilterListener
           This interface represents a VBI filter event listener.
 

Uses of EventListener in org.ocap.shared.dvr
 

Subinterfaces of EventListener in org.ocap.shared.dvr
 interface RecordingChangedListener
          Listener to receive changes in the recording list maintained by the RecordingManager.
 

Uses of EventListener in org.ocap.si
 

Subinterfaces of EventListener in org.ocap.si
 interface TableChangeListener
          This interface is implemented by an application for notification of change to a table.
 

Uses of EventListener in org.ocap.storage
 

Subinterfaces of EventListener in org.ocap.storage
 interface AvailableStorageListener
          This interface represents a listener that can be set to listen for high water level reached in persistent storage indicated by the dvb.persistent.root property for all applications.
 interface StorageManagerListener
          This interface represents a listener for changes to the set of StorageProxies (StorageProxy).
 

Uses of EventListener in org.ocap.system
 

Subinterfaces of EventListener in org.ocap.system
 interface EASListener
          This interface represents a listener that will receive EAS events.
 

Uses of EventListener in org.ocap.system.event
 

Subinterfaces of EventListener in org.ocap.system.event
 interface SystemEventListener
          System event handler implemented by a trusted application and registered with SystemEventManager.
 

Uses of EventListener in org.ocap.ui.event
 

Subinterfaces of EventListener in org.ocap.ui.event
 interface MultiScreenConfigurationListener
          This listener is used to provide notifications regarding system and application induced changes to the global state of the MultiScreenManager instance or the state of some display HScreen with respect to the per-platform or some per-display multiscreen configuration, respectively, or to changes to a specific MultiScreenConfiguration instance.
 interface MultiScreenContextListener
          This listener is used to provide notifications regarding system and application induced changes to a MultiScreenContext.