All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.juneau.dto.html5.Body 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 <body>
 * element.
 *
 * 
See Also:
*/ @Bean(typeName="body") @FluentSetters public class Body extends HtmlElementMixed { /** * Creates an empty {@link Body} element. */ public Body() {} /** * Creates a {@link Body} element with the specified child nodes. * * @param children The child nodes. */ public Body(Object...children) { children(children); } /** * onafterprint * attribute. * * @param onafterprint The new value for this attribute. * @return This object. */ public final Body onafterprint(String onafterprint) { attr("onafterprint", onafterprint); return this; } /** * onbeforeunload * attribute. * * @param onbeforeunload The new value for this attribute. * @return This object. */ public final Body onbeforeunload(String onbeforeunload) { attr("onbeforeunload", onbeforeunload); return this; } /** * onmessage * attribute. * * @param onmessage The new value for this attribute. * @return This object. */ public final Body onmessage(String onmessage) { attr("onmessage", onmessage); return this; } /** * ononline * attribute. * * @param ononline The new value for this attribute. * @return This object. */ public final Body ononline(String ononline) { attr("ononline", ononline); return this; } /** * onpageshow * attribute. * * @param onpageshow The new value for this attribute. * @return This object. */ public final Body onpageshow(String onpageshow) { attr("onpageshow", onpageshow); return this; } /** * onstorage * attribute. * * @param onstorage The new value for this attribute. * @return This object. */ public final Body onstorage(String onstorage) { attr("onstorage", onstorage); return this; } //----------------------------------------------------------------------------------------------------------------- // Overridden methods //----------------------------------------------------------------------------------------------------------------- // @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body _class(String _class) { super._class(_class); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body accesskey(String accesskey) { super.accesskey(accesskey); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body contenteditable(Object contenteditable) { super.contenteditable(contenteditable); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body dir(String dir) { super.dir(dir); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body hidden(Object hidden) { super.hidden(hidden); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body id(String id) { super.id(id); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body lang(String lang) { super.lang(lang); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onabort(String onabort) { super.onabort(onabort); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onblur(String onblur) { super.onblur(onblur); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body oncancel(String oncancel) { super.oncancel(oncancel); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body oncanplay(String oncanplay) { super.oncanplay(oncanplay); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body oncanplaythrough(String oncanplaythrough) { super.oncanplaythrough(oncanplaythrough); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onchange(String onchange) { super.onchange(onchange); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onclick(String onclick) { super.onclick(onclick); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body oncuechange(String oncuechange) { super.oncuechange(oncuechange); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body ondblclick(String ondblclick) { super.ondblclick(ondblclick); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body ondurationchange(String ondurationchange) { super.ondurationchange(ondurationchange); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onemptied(String onemptied) { super.onemptied(onemptied); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onended(String onended) { super.onended(onended); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onerror(String onerror) { super.onerror(onerror); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onfocus(String onfocus) { super.onfocus(onfocus); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body oninput(String oninput) { super.oninput(oninput); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body oninvalid(String oninvalid) { super.oninvalid(oninvalid); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onkeydown(String onkeydown) { super.onkeydown(onkeydown); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onkeypress(String onkeypress) { super.onkeypress(onkeypress); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onkeyup(String onkeyup) { super.onkeyup(onkeyup); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onload(String onload) { super.onload(onload); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onloadeddata(String onloadeddata) { super.onloadeddata(onloadeddata); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onloadedmetadata(String onloadedmetadata) { super.onloadedmetadata(onloadedmetadata); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onloadstart(String onloadstart) { super.onloadstart(onloadstart); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onmousedown(String onmousedown) { super.onmousedown(onmousedown); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onmouseenter(String onmouseenter) { super.onmouseenter(onmouseenter); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onmouseleave(String onmouseleave) { super.onmouseleave(onmouseleave); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onmousemove(String onmousemove) { super.onmousemove(onmousemove); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onmouseout(String onmouseout) { super.onmouseout(onmouseout); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onmouseover(String onmouseover) { super.onmouseover(onmouseover); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onmouseup(String onmouseup) { super.onmouseup(onmouseup); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onmousewheel(String onmousewheel) { super.onmousewheel(onmousewheel); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onpause(String onpause) { super.onpause(onpause); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onplay(String onplay) { super.onplay(onplay); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onplaying(String onplaying) { super.onplaying(onplaying); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onprogress(String onprogress) { super.onprogress(onprogress); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onratechange(String onratechange) { super.onratechange(onratechange); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onreset(String onreset) { super.onreset(onreset); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onresize(String onresize) { super.onresize(onresize); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onscroll(String onscroll) { super.onscroll(onscroll); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onseeked(String onseeked) { super.onseeked(onseeked); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onseeking(String onseeking) { super.onseeking(onseeking); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onselect(String onselect) { super.onselect(onselect); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onshow(String onshow) { super.onshow(onshow); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onstalled(String onstalled) { super.onstalled(onstalled); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onsubmit(String onsubmit) { super.onsubmit(onsubmit); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onsuspend(String onsuspend) { super.onsuspend(onsuspend); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body ontimeupdate(String ontimeupdate) { super.ontimeupdate(ontimeupdate); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body ontoggle(String ontoggle) { super.ontoggle(ontoggle); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onvolumechange(String onvolumechange) { super.onvolumechange(onvolumechange); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body onwaiting(String onwaiting) { super.onwaiting(onwaiting); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body spellcheck(Object spellcheck) { super.spellcheck(spellcheck); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body style(String style) { super.style(style); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body tabindex(Object tabindex) { super.tabindex(tabindex); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body title(String title) { super.title(title); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElement */ public Body translate(Object translate) { super.translate(translate); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElementMixed */ public Body child(Object child) { super.child(child); return this; } @Override /* GENERATED - org.apache.juneau.dto.html5.HtmlElementMixed */ public Body children(Object...children) { super.children(children); return this; } // }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy