Package com.google.gwt.media.dom.client
Class MediaError
java.lang.Object
com.google.gwt.core.client.JavaScriptObject
com.google.gwt.media.dom.client.MediaError
A JavaScriptObject indicating the type of error encountered by a
MediaElement.
Experimental API: This API is still under development and is subject to change.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intA constant returned bygetCode()indicating that playback was aborted at the user's request.static final intA constant returned bygetCode()indicating that playback was aborted due to an error in decoding.static final intA constant returned bygetCode()indicating that playback was aborted due to a network error.static final intA constant returned bygetCode()indicating that the format of the source stream was unsuitable for playback. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintgetCode()Returns an error code indicating the reason for the error.Methods inherited from class com.google.gwt.core.client.JavaScriptObject
cast, createArray, createArray, createFunction, createObject, equals, hashCode, toSource, toString
-
Field Details
-
MEDIA_ERR_ABORTED
public static final int MEDIA_ERR_ABORTEDA constant returned bygetCode()indicating that playback was aborted at the user's request.- See Also:
-
MEDIA_ERR_NETWORK
public static final int MEDIA_ERR_NETWORKA constant returned bygetCode()indicating that playback was aborted due to a network error.- See Also:
-
MEDIA_ERR_DECODE
public static final int MEDIA_ERR_DECODEA constant returned bygetCode()indicating that playback was aborted due to an error in decoding.- See Also:
-
MEDIA_ERR_SRC_NOT_SUPPORTED
public static final int MEDIA_ERR_SRC_NOT_SUPPORTEDA constant returned bygetCode()indicating that the format of the source stream was unsuitable for playback.- See Also:
-
-
Constructor Details
-
MediaError
protected MediaError()
-
-
Method Details
-
getCode
public int getCode()Returns an error code indicating the reason for the error.- Returns:
- one of
MEDIA_ERR_ABORTED,MEDIA_ERR_NETWORK,MEDIA_ERR_DECODE, orMEDIA_ERR_SRC_NOT_SUPPORTED
-