|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| 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 | Provides controls and events for the management of real-time media in a television environment. |
| javax.tv.service | Provides mechanisms for accessing the service information (SI) database and APIs representing the SI elements it contains. |
| javax.tv.service.guide | Provides APIs to support electronic program guides (EPGs), including program schedules, program events and program ratings. |
| javax.tv.service.navigation | Provides APIs to navigate through services and hierarchical service information. |
| javax.tv.service.selection | Provides a mechanism to select a Service for presentation. |
| javax.tv.service.transport | Provides additional information about the transport mechanisms that deliver the content the SI data describes. |
| 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 | The org.ocap.diagnostics package provides diagnostic MIBs. |
| org.ocap.environment | Represents an environment that provides the context in which applications run. |
| org.ocap.hardware | The org.ocap.hardware package provides representations of several aspects of the hardware. |
| 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.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. |
| 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. |
| Fields in java.awt declared as EventListener | |
|---|---|
protected EventListener |
AWTEventMulticaster.a
|
protected EventListener |
AWTEventMulticaster.b
|
| Methods in java.awt that return EventListener | |
|---|---|
protected static EventListener |
AWTEventMulticaster.addInternal(EventListener a,
EventListener b)
Returns the resulting multicast listener from adding listener-a and listener-b together. |
static EventListener[] |
AWTEventMulticaster.getListeners(EventListener l,
Class listenerType)
Returns an array of all the objects chained as FooListeners by the specified
java.util.EventListener. |
protected EventListener |
AWTEventMulticaster.remove(EventListener oldl)
Removes a listener from this multicaster and returns the resulting multicast listener. |
protected static EventListener |
AWTEventMulticaster.removeInternal(EventListener l,
EventListener oldl)
Returns the resulting multicast listener after removing the old listener from listener-l. |
| Methods in java.awt with parameters of type EventListener | |
|---|---|
protected static EventListener |
AWTEventMulticaster.addInternal(EventListener a,
EventListener b)
Returns the resulting multicast listener from adding listener-a and listener-b together. |
static EventListener[] |
AWTEventMulticaster.getListeners(EventListener l,
Class listenerType)
Returns an array of all the objects chained as FooListeners by the specified
java.util.EventListener. |
protected EventListener |
AWTEventMulticaster.remove(EventListener oldl)
Removes a listener from this multicaster and returns the resulting multicast listener. |
protected static EventListener |
AWTEventMulticaster.removeInternal(EventListener l,
EventListener oldl)
Returns the resulting multicast listener after removing the old listener from listener-l. |
protected static void |
AWTEventMulticaster.save(ObjectOutputStream s,
String k,
EventListener l)
|
| Constructors in java.awt with parameters of type EventListener | |
|---|---|
AWTEventMulticaster(EventListener a,
EventListener b)
Creates an event multicaster instance which chains listener-a with listener-b. |
|
| 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
ControllerListener is an interface for handling asynchronous
events generated by Controllers. |
interface |
GainChangeListener
GainChangeListener is an interface for handling
GainChangeEvents generated by
GainControls. |
| 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 |
BouquetChangeListener
This interface is implemented by applications wishing to receive notification of changes to Bouquet data. |
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. |
| Fields in org.havi.ui declared as EventListener | |
|---|---|
protected EventListener |
HEventMulticaster.a
|
protected EventListener |
HEventMulticaster.b
|
| Methods in org.havi.ui that return EventListener | |
|---|---|
protected static EventListener |
HEventMulticaster.addInternal(EventListener a,
EventListener b)
Returns the resulting multicast listener from adding listener-a and listener-b together. |
protected EventListener |
HEventMulticaster.remove(EventListener oldl)
Removes a listener from this multicaster and returns the result. |
protected static EventListener |
HEventMulticaster.removeInternal(EventListener l,
EventListener oldl)
Returns the resulting multicast listener after removing the old listener from listener-l. |
| Methods in org.havi.ui with parameters of type EventListener | |
|---|---|
protected static EventListener |
HEventMulticaster.addInternal(EventListener a,
EventListener b)
Returns the resulting multicast listener from adding listener-a and listener-b together. |
protected EventListener |
HEventMulticaster.remove(EventListener oldl)
Removes a listener from this multicaster and returns the result. |
protected static EventListener |
HEventMulticaster.removeInternal(EventListener l,
EventListener oldl)
Returns the resulting multicast listener after removing the old listener from listener-l. |
| Constructors in org.havi.ui with parameters of type EventListener | |
|---|---|
HEventMulticaster(EventListener a,
EventListener b)
Creates an event multicaster instance which chains listener-a with listener-b. |
|
| 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.environment |
|---|
| Subinterfaces of EventListener in org.ocap.environment | |
|---|---|
interface |
EnvironmentListener
The listener interface for receiving environment events. |
| 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.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.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. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||