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 SummaryFields Modifier and Type Field Description static EventType<MediaErrorEvent>MEDIA_ERRORThe only valid event type for theMediaErrorEvent.Fields declared in class java.util.EventObjectsource
- 
Method SummaryModifier and Type Method Description MediaErrorEventcopyFor(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.MediaExceptiongetMediaError()Retrieve the error associated with this event.StringtoString()Retrieve aStringrepresentation of the event.Methods declared in class java.util.EventObjectgetSource
- 
Field Details- 
MEDIA_ERRORThe only valid event type for theMediaErrorEvent.
 
- 
- 
Method Details- 
getMediaErrorRetrieve the error associated with this event.- Returns:
- The MediaException
 
- 
toStringRetrieve aStringrepresentation of the event.- Overrides:
- toStringin class- EventObject
 
- 
copyForDescription copied from class:EventCreates 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_TARGETvalue.
- 
getEventTypeDescription copied from class:EventGets the event type of this event. Objects of the sameEventclass can have different event types. These event types further specify what kind of event occurred.- Overrides:
- getEventTypein class- Event
- Returns:
- the event type
 
 
-