java.lang.Object
java.util.EventObject
javafx.event.Event
javafx.scene.media.MediaErrorEvent
- All Implemented Interfaces:
Serializable
,Cloneable
public class MediaErrorEvent extends Event
An
Event
representing the occurrence of an error in handling media.- Since:
- JavaFX 2.0
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description static EventType<MediaErrorEvent>
MEDIA_ERROR
The only valid event type for theMediaErrorEvent
.Fields inherited from class java.util.EventObject
source
-
Method Summary
Modifier and Type Method Description MediaErrorEvent
copyFor(Object newSource, EventTarget newTarget)
Creates and returns a copy of this event with the specified event source and target.EventType<MediaErrorEvent>
getEventType()
Gets the event type of this event.MediaException
getMediaError()
Retrieve the error associated with this event.String
toString()
Retrieve aString
representation of the event.Methods inherited from class java.util.EventObject
getSource
-
Field Details
-
MEDIA_ERROR
The only valid event type for theMediaErrorEvent
.
-
-
Method Details
-
getMediaError
Retrieve the error associated with this event.- Returns:
- The
MediaException
-
toString
Retrieve aString
representation of the event.- Overrides:
toString
in classEventObject
-
copyFor
Description copied from class:Event
Creates and returns a copy of this event with the specified event source and target. If the source or target is set tonull
, it is replaced by theNULL_SOURCE_TARGET
value. -
getEventType
Description copied from class:Event
Gets the event type of this event. Objects of the sameEvent
class can have different event types. These event types further specify what kind of event occurred.- Overrides:
getEventType
in classEvent
- Returns:
- the event type
-