blob: 543d2ee270957bf682f49b0100ccacf2a5fedb27 [file] [log] [blame]
// ***************************************************************************************************************************
// * 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 static org.apache.juneau.xml.annotation.XmlFormat.*;
import java.net.*;
import java.net.URI;
import java.util.*;
import java.util.Map.*;
import org.apache.juneau.*;
import org.apache.juneau.annotation.*;
import org.apache.juneau.html.*;
import org.apache.juneau.internal.*;
import org.apache.juneau.xml.annotation.*;
/**
* Superclass for all HTML elements.
*
* <p>
* These are beans that when serialized using {@link HtmlSerializer} generate valid HTML5 elements.
*
* <h6 class='topic'>Additional Information</h6>
* <ul class='doctree'>
* <li class='link'>
* <a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects
* (org.apache.juneau.dto)</a>
* <ul>
* <li class='sublink'>
* <a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a>
* </ul>
* </li>
* </ul>
*/
@org.apache.juneau.html.annotation.Html(asXml=true)
public abstract class HtmlElement {
private LinkedHashMap<String,Object> attrs;
/**
* The attributes of this element.
*
* @return The attributes of this element.
*/
@Xml(format=ATTRS)
@BeanProperty("a")
public LinkedHashMap<String,Object> getAttrs() {
return attrs;
}
/**
* Sets the attributes for this element.
*
* @param attrs The new attributes for this element.
* @return This object (for method chaining).
*/
@BeanProperty("a")
public HtmlElement setAttrs(LinkedHashMap<String,Object> attrs) {
for (Entry<String,Object> e : attrs.entrySet()) {
String key = e.getKey();
if ("url".equals(key) || "href".equals(key) || key.endsWith("action"))
e.setValue(StringUtils.toURI(e.getValue()));
}
this.attrs = attrs;
return this;
}
/**
* Adds an arbitrary attribute to this element.
*
* @param key The attribute name.
* @param val The attribute value.
* @return This object (for method chaining).
*/
public HtmlElement attr(String key, Object val) {
if (this.attrs == null)
this.attrs = new LinkedHashMap<String,Object>();
if ("url".equals(key) || "href".equals(key) || key.endsWith("action"))
val = StringUtils.toURI(val);
this.attrs.put(key, val);
return this;
}
/**
* Adds an arbitrary URI attribute to this element.
*
* <p>
* Same as {@link #attr(String, Object)}, except if the value is a string that appears to be a URI
* (e.g. <js>"servlet:/xxx"</js>).
*
* <p>
* The value can be of any of the following types: {@link URI}, {@link URL}, {@link String}.
* Strings must be valid URIs.
*
* <p>
* URIs defined by {@link UriResolver} can be used for values.
*
* @param key The attribute name.
* @param val The attribute value.
* @return This object (for method chaining).
*/
public HtmlElement attrUri(String key, Object val) {
if (this.attrs == null)
this.attrs = new LinkedHashMap<String,Object>();
this.attrs.put(key, StringUtils.toURI(val));
return this;
}
/**
* Returns the attribute with the specified name.
*
* @param key The attribute name.
* @return The attribute value, or <jk>null</jk> if the named attribute does not exist.
*/
public String getAttr(String key) {
return getAttr(String.class, key);
}
/**
* Returns the attribute with the specified name converted to the specified class type.
*
* @param type
* The class type to convert this class to.
* See {@link ObjectUtils} for a list of supported conversion types.
* @param key The attribute name.
* @return The attribute value, or <jk>null</jk> if the named attribute does not exist.
*/
public <T> T getAttr(Class<T> type, String key) {
return attrs == null ? null : ObjectUtils.convertToType(attrs.get(key), type);
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/editing.html#the-accesskey-attribute">accesskey</a>
* attribute.
*
* @param accesskey The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement accesskey(String accesskey) {
attr("accesskey", accesskey);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/dom.html#classes">class</a> attribute.
*
* @param _class The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement _class(String _class) {
attr("class", _class);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/editing.html#attr-contenteditable">contenteditable</a>
* attribute.
*
* @param contenteditable The new value for this attribute.
* Typically a {@link Boolean} or {@link String}.
* @return This object (for method chaining).
*/
public HtmlElement contenteditable(Object contenteditable) {
attr("contenteditable", contenteditable);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/dom.html#the-dir-attribute">dir</a> attribute.
*
* @param dir The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement dir(String dir) {
attr("dir", dir);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/editing.html#the-hidden-attribute">hidden</a> attribute.
*
* @param hidden
* The new value for this attribute.
* Typically a {@link Boolean} or {@link String}.
* @return This object (for method chaining).
*/
public HtmlElement hidden(Object hidden) {
attr("hidden", hidden);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/dom.html#the-id-attribute">id</a> attribute.
*
* @param id The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement id(String id) {
attr("id", id);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/dom.html#attr-lang">lang</a> attribute.
*
* @param lang The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement lang(String lang) {
attr("lang", lang);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onabort">onabort</a> attribute.
*
* @param onabort The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onabort(String onabort) {
attr("onabort", onabort);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onblur">onblur</a> attribute.
*
* @param onblur The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onblur(String onblur) {
attr("onblur", onblur);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-oncancel">oncancel</a> attribute.
*
* @param oncancel The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement oncancel(String oncancel) {
attr("oncancel", oncancel);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-oncanplay">oncanplay</a> attribute.
*
* @param oncanplay The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement oncanplay(String oncanplay) {
attr("oncanplay", oncanplay);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-oncanplaythrough">oncanplaythrough</a>
* attribute.
*
* @param oncanplaythrough The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement oncanplaythrough(String oncanplaythrough) {
attr("oncanplaythrough", oncanplaythrough);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onchange">onchange</a> attribute.
*
* @param onchange The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onchange(String onchange) {
attr("onchange", onchange);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onclick">onclick</a> attribute.
*
* @param onclick The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onclick(String onclick) {
attr("onclick", onclick);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-oncuechange">oncuechange</a>
* attribute.
*
* @param oncuechange The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement oncuechange(String oncuechange) {
attr("oncuechange", oncuechange);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-ondblclick">ondblclick</a> attribute.
*
* @param ondblclick The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement ondblclick(String ondblclick) {
attr("ondblclick", ondblclick);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-ondurationchange">ondurationchange</a>
* attribute.
*
* @param ondurationchange The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement ondurationchange(String ondurationchange) {
attr("ondurationchange", ondurationchange);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onemptied">onemptied</a> attribute.
*
* @param onemptied The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onemptied(String onemptied) {
attr("onemptied", onemptied);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onended">onended</a> attribute.
*
* @param onended The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onended(String onended) {
attr("onended", onended);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onerror">onerror</a> attribute.
*
* @param onerror The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onerror(String onerror) {
attr("onerror", onerror);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onfocus">onfocus</a> attribute.
*
* @param onfocus The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onfocus(String onfocus) {
attr("onfocus", onfocus);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-oninput">oninput</a> attribute.
*
* @param oninput The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement oninput(String oninput) {
attr("oninput", oninput);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-oninvalid">oninvalid</a> attribute.
*
* @param oninvalid The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement oninvalid(String oninvalid) {
attr("oninvalid", oninvalid);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onkeydown">onkeydown</a> attribute.
*
* @param onkeydown The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onkeydown(String onkeydown) {
attr("onkeydown", onkeydown);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onkeypress">onkeypress</a> attribute.
*
* @param onkeypress The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onkeypress(String onkeypress) {
attr("onkeypress", onkeypress);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onkeyup">onkeyup</a> attribute.
*
* @param onkeyup The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onkeyup(String onkeyup) {
attr("onkeyup", onkeyup);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onload">onload</a> attribute.
*
* @param onload The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onload(String onload) {
attr("onload", onload);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onloadeddata">onloadeddata</a>
* attribute.
*
* @param onloadeddata The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onloadeddata(String onloadeddata) {
attr("onloadeddata", onloadeddata);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onloadedmetadata">onloadedmetadata</a>
* attribute.
*
* @param onloadedmetadata The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onloadedmetadata(String onloadedmetadata) {
attr("onloadedmetadata", onloadedmetadata);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onloadstart">onloadstart</a>
* attribute.
*
* @param onloadstart The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onloadstart(String onloadstart) {
attr("onloadstart", onloadstart);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onmousedown">onmousedown</a>
* attribute.
*
* @param onmousedown The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onmousedown(String onmousedown) {
attr("onmousedown", onmousedown);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onmouseenter">onmouseenter</a> attribute.
*
* @param onmouseenter The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onmouseenter(String onmouseenter) {
attr("onmouseenter", onmouseenter);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onmouseleave">onmouseleave</a>
* attribute.
*
* @param onmouseleave The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onmouseleave(String onmouseleave) {
attr("onmouseleave", onmouseleave);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onmousemove">onmousemove</a>
* attribute.
*
* @param onmousemove The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onmousemove(String onmousemove) {
attr("onmousemove", onmousemove);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onmouseout">onmouseout</a> attribute.
*
* @param onmouseout The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onmouseout(String onmouseout) {
attr("onmouseout", onmouseout);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onmouseover">onmouseover</a>
* attribute.
*
* @param onmouseover The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onmouseover(String onmouseover) {
attr("onmouseover", onmouseover);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onmouseup">onmouseup</a> attribute.
*
* @param onmouseup The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onmouseup(String onmouseup) {
attr("onmouseup", onmouseup);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onmousewheel">onmousewheel</a>
* attribute.
*
* @param onmousewheel The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onmousewheel(String onmousewheel) {
attr("onmousewheel", onmousewheel);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onpause">onpause</a> attribute.
*
* @param onpause The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onpause(String onpause) {
attr("onpause", onpause);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onplay">onplay</a> attribute.
*
* @param onplay The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onplay(String onplay) {
attr("onplay", onplay);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onplaying">onplaying</a> attribute.
*
* @param onplaying The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onplaying(String onplaying) {
attr("onplaying", onplaying);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onprogress">onprogress</a> attribute.
*
* @param onprogress The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onprogress(String onprogress) {
attr("onprogress", onprogress);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onratechange">onratechange</a>
* attribute.
*
* @param onratechange The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onratechange(String onratechange) {
attr("onratechange", onratechange);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onreset">onreset</a> attribute.
*
* @param onreset The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onreset(String onreset) {
attr("onreset", onreset);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onresize">onresize</a> attribute.
*
* @param onresize The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onresize(String onresize) {
attr("onresize", onresize);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onscroll">onscroll</a> attribute.
*
* @param onscroll The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onscroll(String onscroll) {
attr("onscroll", onscroll);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onseeked">onseeked</a> attribute.
*
* @param onseeked The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onseeked(String onseeked) {
attr("onseeked", onseeked);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onseeking">onseeking</a> attribute.
*
* @param onseeking The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onseeking(String onseeking) {
attr("onseeking", onseeking);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onselect">onselect</a> attribute.
*
* @param onselect The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onselect(String onselect) {
attr("onselect", onselect);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onshow">onshow</a> attribute.
*
* @param onshow The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onshow(String onshow) {
attr("onshow", onshow);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onstalled">onstalled</a> attribute.
*
* @param onstalled The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onstalled(String onstalled) {
attr("onstalled", onstalled);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onsubmit">onsubmit</a> attribute.
*
* @param onsubmit The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onsubmit(String onsubmit) {
attr("onsubmit", onsubmit);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onsuspend">onsuspend</a> attribute.
*
* @param onsuspend The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onsuspend(String onsuspend) {
attr("onsuspend", onsuspend);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-ontimeupdate">ontimeupdate</a>
* attribute.
*
* @param ontimeupdate The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement ontimeupdate(String ontimeupdate) {
attr("ontimeupdate", ontimeupdate);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-ontoggle">ontoggle</a> attribute.
*
* @param ontoggle The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement ontoggle(String ontoggle) {
attr("ontoggle", ontoggle);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onvolumechange">onvolumechange</a>
* attribute.
*
* @param onvolumechange The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onvolumechange(String onvolumechange) {
attr("onvolumechange", onvolumechange);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onwaiting">onwaiting</a> attribute.
*
* @param onwaiting The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement onwaiting(String onwaiting) {
attr("onwaiting", onwaiting);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/editing.html#attr-spellcheck">spellcheck</a> attribute.
*
* @param spellcheck
* The new value for this attribute.
* Typically a {@link Boolean} or {@link String}.
* @return This object (for method chaining).
*/
public HtmlElement spellcheck(Object spellcheck) {
attr("spellcheck", spellcheck);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/dom.html#the-style-attribute">style</a> attribute.
*
* @param style The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement style(String style) {
attr("style", style);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/editing.html#attr-tabindex">tabindex</a> attribute.
*
* @param tabindex
* The new value for this attribute.
* Typically a {@link Number} or {@link String}.
* @return This object (for method chaining).
*/
public HtmlElement tabindex(Object tabindex) {
attr("tabindex", tabindex);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/dom.html#attr-title">title</a> attribute.
*
* @param title The new value for this attribute.
* @return This object (for method chaining).
*/
public HtmlElement title(String title) {
attr("title", title);
return this;
}
/**
* <a class="doclink" href="https://www.w3.org/TR/html5/dom.html#attr-translate">translate</a> attribute.
*
* @param translate
* The new value for this attribute.
* Typically a {@link Number} or {@link String}.
* @return This object (for method chaining).
*/
public HtmlElement translate(Object translate) {
attr("translate", translate);
return this;
}
@Override /* Object */
public String toString() {
return HtmlSerializer.DEFAULT_SQ.toString(this);
}
}