org.apache.myfaces.html5.component.properties
Interface MediaEventProperties

All Known Implementing Classes:
AbstractAudio, AbstractMedia, AbstractVideo, Audio, Media, Video

public interface MediaEventProperties


Method Summary
 String getOnended()
          HTML: Handler for event that is fired when the playback has stopped because the end of the media resource was reached.
 String getOnerror()
          HTML: Handler for event that is fired when an error occurs while fetching the media data.
 String getOnloadeddata()
          HTML: Handler for event that is fired when browser can render the media data at the current playback position for the first time.
 String getOnloadedmetadata()
          HTML: Handler for event that is fired when browser has just determined the duration and dimensions of the media resource and the timed tracks are ready.
 String getOnloadstart()
          HTML: Handler for event that is fired when browser begins looking for media data, as part of the resource selection algorithm.
 String getOnpause()
          HTML: Handler for event that is fired when the playback has been paused.
 String getOnplay()
          HTML: Handler for event that is fired when the playback has begun.
 String getOnplaying()
          HTML: Handler for event that is fired when the playback has started.
 String getOnprogress()
          HTML: Handler for event that is fired while browser is fetching media data.
 String getOnseeked()
          HTML: Handler for event that is fired when a seek operation is finished.
 String getOnseeking()
          HTML: Handler for event that is fired if the seek operation is taking long enough that the browser has time to fire the event.
 String getOnvolumechange()
          HTML: Handler for event that is fired when either the volume attribute or the muted attribute has changed.
 String getOnwaiting()
          HTML: Handler for event that is fired when the playback has stopped because the next frame is not available, but the user agent expects that frame to become available in due course.
 

Method Detail

getOnended

@JSFProperty(clientEvent="ended")
String getOnended()
HTML: Handler for event that is fired when the playback has stopped because the end of the media resource was reached.


getOnerror

@JSFProperty(clientEvent="error")
String getOnerror()
HTML: Handler for event that is fired when an error occurs while fetching the media data.


getOnloadeddata

@JSFProperty(clientEvent="loadeddata")
String getOnloadeddata()
HTML: Handler for event that is fired when browser can render the media data at the current playback position for the first time.


getOnloadedmetadata

@JSFProperty(clientEvent="loadedmetadata")
String getOnloadedmetadata()
HTML: Handler for event that is fired when browser has just determined the duration and dimensions of the media resource and the timed tracks are ready.


getOnloadstart

@JSFProperty(clientEvent="loadstart")
String getOnloadstart()
HTML: Handler for event that is fired when browser begins looking for media data, as part of the resource selection algorithm.


getOnpause

@JSFProperty(clientEvent="pause")
String getOnpause()
HTML: Handler for event that is fired when the playback has been paused. Fired after the pause() method has returned.


getOnplay

@JSFProperty(clientEvent="play")
String getOnplay()
HTML: Handler for event that is fired when the playback has begun. Fired after the play() method has returned, or when the autoplay attribute has caused playback to begin.


getOnplaying

@JSFProperty(clientEvent="playing")
String getOnplaying()
HTML: Handler for event that is fired when the playback has started.


getOnprogress

@JSFProperty(clientEvent="progress")
String getOnprogress()
HTML: Handler for event that is fired while browser is fetching media data.


getOnseeked

@JSFProperty(clientEvent="seeked")
String getOnseeked()
HTML: Handler for event that is fired when a seek operation is finished.


getOnseeking

@JSFProperty(clientEvent="seeking")
String getOnseeking()
HTML: Handler for event that is fired if the seek operation is taking long enough that the browser has time to fire the event.


getOnvolumechange

@JSFProperty(clientEvent="volumechange")
String getOnvolumechange()
HTML: Handler for event that is fired when either the volume attribute or the muted attribute has changed. Fired after the relevant attribute's setter has returned.


getOnwaiting

@JSFProperty(clientEvent="waiting")
String getOnwaiting()
HTML: Handler for event that is fired when the playback has stopped because the next frame is not available, but the user agent expects that frame to become available in due course.



Copyright © 2011 The Apache Software Foundation. All Rights Reserved.