HTML and CSS Reference
In-Depth Information
/**
* Gets the URL of the VTT text track.
*
* @return URL of the VTT text track
* @see <a href=" http://dev.w3.org/html5/webvtt/ " >WebVTT: The Web Video Text
* Tracks Format</a>
*/
public String getSource() {
return source;
}
/**
* Sets the URL of the VTT text track.
*
* @param source URL of the VTT text track
* @see <a href=" http://dev.w3.org/html5/webvtt/ " >WebVTT: The Web Video Text
* Tracks Format</a>
*/
public void setSource(String source) {
this.source = source;
}
/**
* Gets the kind of text track.
*
* @return Kind of text track
*/
public MediaTrackKind getKind() {
return kind;
}
/**
* Sets the kind of text track.
*
* @param kind Kind of text track
*/
public void setKind(MediaTrackKind kind) {
this.kind = kind;
}
/**
* Gets the label of the text track for display.
*
* @return Label of the text track for display.
*/
public String getLabel() {
return label;
}
Search WWH ::




Custom Search