![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.juneau.dto.html5.Object_ 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 org.apache.juneau.annotation.*;
import org.apache.juneau.internal.*;
/**
* DTO for an HTML <object>
* element.
*
* See Also:
*/
@Bean(typeName="object")
@FluentSetters
public class Object_ extends HtmlElementMixed {
/**
* Creates an empty {@link Object_} element.
*/
public Object_() {}
/**
* Creates an {@link Object_} element with the specified child nodes.
*
* @param children The child nodes.
*/
public Object_(Object...children) {
children(children);
}
/**
* data attribute.
*
*
* Address of the resource.
*
* @param data The new value for this attribute.
* @return This object.
*/
public final Object_ data(String data) {
attr("data", data);
return this;
}
/**
* form attribute.
*
*
* Associates the control with a form element.
*
* @param form The new value for this attribute.
* @return This object.
*/
public final Object_ form(String form) {
attr("form", form);
return this;
}
/**
* height
* attribute.
*
*
* Vertical dimension.
*
* @param height
* The new value for this attribute.
* Typically a {@link Number} or {@link String}.
* @return This object.
*/
public final Object_ height(Object height) {
attr("height", height);
return this;
}
/**
* name attribute.
*
*
* Name of nested browsing context.
*
* @param name The new value for this attribute.
* @return This object.
*/
public final Object_ name(String name) {
attr("name", name);
return this;
}
/**
* type attribute.
*
*
* Type of embedded resource.
*
* @param type The new value for this attribute.
* @return This object.
*/
public final Object_ type(String type) {
attr("type", type);
return this;
}
/**
* typemustmatch
* attribute.
*
*
* Whether the type attribute and the Content-Type value need to match for the resource to be used.
*
* @param typemustmatch
* The new value for this attribute.
* Typically a {@link Boolean} or {@link String}.
* @return This object.
*/
public final Object_ typemustmatch(Object typemustmatch) {
attr("typemustmatch", typemustmatch);
return this;
}
/**
* usemap
* attribute.
*
*
* Name of image map to use.
*
* @param usemap The new value for this attribute.
* @return This object.
*/
public final Object_ usemap(String usemap) {
attr("usemap", usemap);
return this;
}
/**
* width attribute.
*
*
* Horizontal dimension.
*
* @param width
* The new value for this attribute.
* Typically a {@link Number} or {@link String}.
* @return This object.
*/
public final Object_ width(Object width) {
attr("width", width);
return this;
}
//-----------------------------------------------------------------------------------------------------------------
// Overridden methods
//-----------------------------------------------------------------------------------------------------------------
//
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ _class(String _class) {
super._class(_class);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ accesskey(String accesskey) {
super.accesskey(accesskey);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ contenteditable(Object contenteditable) {
super.contenteditable(contenteditable);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ dir(String dir) {
super.dir(dir);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ hidden(Object hidden) {
super.hidden(hidden);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ id(String id) {
super.id(id);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ lang(String lang) {
super.lang(lang);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onabort(String onabort) {
super.onabort(onabort);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onblur(String onblur) {
super.onblur(onblur);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ oncancel(String oncancel) {
super.oncancel(oncancel);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ oncanplay(String oncanplay) {
super.oncanplay(oncanplay);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ oncanplaythrough(String oncanplaythrough) {
super.oncanplaythrough(oncanplaythrough);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onchange(String onchange) {
super.onchange(onchange);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onclick(String onclick) {
super.onclick(onclick);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ oncuechange(String oncuechange) {
super.oncuechange(oncuechange);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ ondblclick(String ondblclick) {
super.ondblclick(ondblclick);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ ondurationchange(String ondurationchange) {
super.ondurationchange(ondurationchange);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onemptied(String onemptied) {
super.onemptied(onemptied);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onended(String onended) {
super.onended(onended);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onerror(String onerror) {
super.onerror(onerror);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onfocus(String onfocus) {
super.onfocus(onfocus);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ oninput(String oninput) {
super.oninput(oninput);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ oninvalid(String oninvalid) {
super.oninvalid(oninvalid);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onkeydown(String onkeydown) {
super.onkeydown(onkeydown);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onkeypress(String onkeypress) {
super.onkeypress(onkeypress);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onkeyup(String onkeyup) {
super.onkeyup(onkeyup);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onload(String onload) {
super.onload(onload);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onloadeddata(String onloadeddata) {
super.onloadeddata(onloadeddata);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onloadedmetadata(String onloadedmetadata) {
super.onloadedmetadata(onloadedmetadata);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onloadstart(String onloadstart) {
super.onloadstart(onloadstart);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onmousedown(String onmousedown) {
super.onmousedown(onmousedown);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onmouseenter(String onmouseenter) {
super.onmouseenter(onmouseenter);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onmouseleave(String onmouseleave) {
super.onmouseleave(onmouseleave);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onmousemove(String onmousemove) {
super.onmousemove(onmousemove);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onmouseout(String onmouseout) {
super.onmouseout(onmouseout);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onmouseover(String onmouseover) {
super.onmouseover(onmouseover);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onmouseup(String onmouseup) {
super.onmouseup(onmouseup);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onmousewheel(String onmousewheel) {
super.onmousewheel(onmousewheel);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onpause(String onpause) {
super.onpause(onpause);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onplay(String onplay) {
super.onplay(onplay);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onplaying(String onplaying) {
super.onplaying(onplaying);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onprogress(String onprogress) {
super.onprogress(onprogress);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onratechange(String onratechange) {
super.onratechange(onratechange);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onreset(String onreset) {
super.onreset(onreset);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onresize(String onresize) {
super.onresize(onresize);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onscroll(String onscroll) {
super.onscroll(onscroll);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onseeked(String onseeked) {
super.onseeked(onseeked);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onseeking(String onseeking) {
super.onseeking(onseeking);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onselect(String onselect) {
super.onselect(onselect);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onshow(String onshow) {
super.onshow(onshow);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onstalled(String onstalled) {
super.onstalled(onstalled);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onsubmit(String onsubmit) {
super.onsubmit(onsubmit);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onsuspend(String onsuspend) {
super.onsuspend(onsuspend);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ ontimeupdate(String ontimeupdate) {
super.ontimeupdate(ontimeupdate);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ ontoggle(String ontoggle) {
super.ontoggle(ontoggle);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onvolumechange(String onvolumechange) {
super.onvolumechange(onvolumechange);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ onwaiting(String onwaiting) {
super.onwaiting(onwaiting);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ spellcheck(Object spellcheck) {
super.spellcheck(spellcheck);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ style(String style) {
super.style(style);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ tabindex(Object tabindex) {
super.tabindex(tabindex);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ title(String title) {
super.title(title);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */
public Object_ translate(Object translate) {
super.translate(translate);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElementMixed */
public Object_ child(Object child) {
super.child(child);
return this;
}
@Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElementMixed */
public Object_ children(Object...children) {
super.children(children);
return this;
}
//
}