net.sf.fmj.ejmf.toolkit.media.event
Class ManagedControllerErrorEvent
java.lang.Object
java.util.EventObject
javax.media.MediaEvent
javax.media.ControllerEvent
javax.media.ControllerClosedEvent
javax.media.ControllerErrorEvent
net.sf.fmj.ejmf.toolkit.media.event.ManagedControllerErrorEvent
- All Implemented Interfaces:
- java.io.Serializable
public class ManagedControllerErrorEvent
- extends ControllerErrorEvent
A ManagedControllerErrorEvent
indicates that a
Controller
managed by a Player posted a
ControllerErrorEvent and subsequently caused the managing
Player to close.
Class is used by AbstractPlayer.
From the book: Essential JMF, Gordon, Talley (ISBN 0130801046). Used with permission.
- Author:
- Steve Talley & Rob Gordon
- See Also:
- Serialized Form
Fields inherited from class java.util.EventObject |
source |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ManagedControllerErrorEvent
public ManagedControllerErrorEvent(Player manager,
ControllerErrorEvent event)
- Create a ManagedControllerErrorEvent for the given managing
Player and ControllerErrorEvent.
- Parameters:
manager
- The managing Player.event
- The original ControllerErrorEvent posted by a
managed Controller.
ManagedControllerErrorEvent
public ManagedControllerErrorEvent(Player manager,
ControllerErrorEvent event,
java.lang.String message)
- Create a ManagedControllerErrorEvent for the given managing
Player, ControllerErrorEvent, and description.
- Parameters:
manager
- The managing Player.event
- The original ControllerErrorEvent posted by a
managed Controller.message
- A message describing the error.
getControllerErrorEvent
public ControllerErrorEvent getControllerErrorEvent()
- Get the original ControllerErrorEvent posted by the managed
Controller.