![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.juneau.dto.html5.Track Maven / Gradle / Ivy
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *
// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance *
// * with the License. You may obtain a copy of the License at *
// * *
// * http://www.apache.org/licenses/LICENSE-2.0 *
// * *
// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an *
// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the *
// * specific language governing permissions and limitations under the License. *
// ***************************************************************************************************************************
package org.apache.juneau.dto.html5;
import java.net.*;
import org.apache.juneau.*;
import org.apache.juneau.annotation.*;
import org.apache.juneau.internal.*;
/**
* DTO for an HTML <track>
* element.
*
* See Also:
*/
@Bean(typeName="track")
@FluentSetters
public class Track extends HtmlElementVoid {
/**
* Creates an empty {@link Track} element.
*/
public Track() {}
/**
* Creates a {@link Track} element with the specified {@link Track#src(Object)} and {@link Track#kind(String)}
* attributes.
*
* @param src The {@link Track#src(Object)} attribute.
* @param kind The {@link Track#kind(String)} attribute.
*/
public Track(Object src, String kind) {
src(src).kind(kind);
}
/**
* default
* attribute.
*
*
* Enable the track if no other text track is more suitable.
*
* @param _default The new value for this attribute.
* @return This object.
*/
public final Track _default(String _default) {
attr("default", _default);
return this;
}
/**
* kind attribute.
*
*
* The type of text track.
*
* @param kind The new value for this attribute.
* @return This object.
*/
public final Track kind(String kind) {
attr("kind", kind);
return this;
}
/**
* label attribute.
*
*
* User-visible label.
*
* @param label The new value for this attribute.
* @return This object.
*/
public final Track label(String label) {
attr("label", label);
return this;
}
/**
* src attribute.
*
*
* Address of the resource.
*
*
* The value can be of any of the following types: {@link URI}, {@link URL}, {@link String}.
* Strings must be valid URIs.
*
*
* URIs defined by {@link UriResolver} can be used for values.
*
* @param src
* The new value for this attribute.
* Typically a {@link URL} or {@link String}.
* @return This object.
*/
public final Track src(Object src) {
attrUri("src", src);
return this;
}
/**
* srclang
* attribute.
*
*
* Language of the text track.
*
* @param srclang The new value for this attribute.
* @return This object.
*/
public final Track srclang(String srclang) {
attr("srclang", srclang);
return this;
}
//-----------------------------------------------------------------------------------------------------------------
// Overridden methods
//-----------------------------------------------------------------------------------------------------------------
//
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track _class(String _class) {
super._class(_class);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track accesskey(String accesskey) {
super.accesskey(accesskey);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track contenteditable(Object contenteditable) {
super.contenteditable(contenteditable);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track dir(String dir) {
super.dir(dir);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track hidden(Object hidden) {
super.hidden(hidden);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track id(String id) {
super.id(id);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track lang(String lang) {
super.lang(lang);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onabort(String onabort) {
super.onabort(onabort);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onblur(String onblur) {
super.onblur(onblur);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track oncancel(String oncancel) {
super.oncancel(oncancel);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track oncanplay(String oncanplay) {
super.oncanplay(oncanplay);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track oncanplaythrough(String oncanplaythrough) {
super.oncanplaythrough(oncanplaythrough);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onchange(String onchange) {
super.onchange(onchange);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onclick(String onclick) {
super.onclick(onclick);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track oncuechange(String oncuechange) {
super.oncuechange(oncuechange);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track ondblclick(String ondblclick) {
super.ondblclick(ondblclick);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track ondurationchange(String ondurationchange) {
super.ondurationchange(ondurationchange);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onemptied(String onemptied) {
super.onemptied(onemptied);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onended(String onended) {
super.onended(onended);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onerror(String onerror) {
super.onerror(onerror);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onfocus(String onfocus) {
super.onfocus(onfocus);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track oninput(String oninput) {
super.oninput(oninput);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track oninvalid(String oninvalid) {
super.oninvalid(oninvalid);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onkeydown(String onkeydown) {
super.onkeydown(onkeydown);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onkeypress(String onkeypress) {
super.onkeypress(onkeypress);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onkeyup(String onkeyup) {
super.onkeyup(onkeyup);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onload(String onload) {
super.onload(onload);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onloadeddata(String onloadeddata) {
super.onloadeddata(onloadeddata);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onloadedmetadata(String onloadedmetadata) {
super.onloadedmetadata(onloadedmetadata);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onloadstart(String onloadstart) {
super.onloadstart(onloadstart);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onmousedown(String onmousedown) {
super.onmousedown(onmousedown);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onmouseenter(String onmouseenter) {
super.onmouseenter(onmouseenter);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onmouseleave(String onmouseleave) {
super.onmouseleave(onmouseleave);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onmousemove(String onmousemove) {
super.onmousemove(onmousemove);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onmouseout(String onmouseout) {
super.onmouseout(onmouseout);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onmouseover(String onmouseover) {
super.onmouseover(onmouseover);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onmouseup(String onmouseup) {
super.onmouseup(onmouseup);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onmousewheel(String onmousewheel) {
super.onmousewheel(onmousewheel);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onpause(String onpause) {
super.onpause(onpause);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onplay(String onplay) {
super.onplay(onplay);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onplaying(String onplaying) {
super.onplaying(onplaying);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onprogress(String onprogress) {
super.onprogress(onprogress);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onratechange(String onratechange) {
super.onratechange(onratechange);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onreset(String onreset) {
super.onreset(onreset);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onresize(String onresize) {
super.onresize(onresize);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onscroll(String onscroll) {
super.onscroll(onscroll);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onseeked(String onseeked) {
super.onseeked(onseeked);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onseeking(String onseeking) {
super.onseeking(onseeking);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onselect(String onselect) {
super.onselect(onselect);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onshow(String onshow) {
super.onshow(onshow);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onstalled(String onstalled) {
super.onstalled(onstalled);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onsubmit(String onsubmit) {
super.onsubmit(onsubmit);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onsuspend(String onsuspend) {
super.onsuspend(onsuspend);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track ontimeupdate(String ontimeupdate) {
super.ontimeupdate(ontimeupdate);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track ontoggle(String ontoggle) {
super.ontoggle(ontoggle);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onvolumechange(String onvolumechange) {
super.onvolumechange(onvolumechange);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track onwaiting(String onwaiting) {
super.onwaiting(onwaiting);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track spellcheck(Object spellcheck) {
super.spellcheck(spellcheck);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track style(String style) {
super.style(style);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track tabindex(Object tabindex) {
super.tabindex(tabindex);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track title(String title) {
super.title(title);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Track translate(Object translate) {
super.translate(translate);
return this;
}
//
}