You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by ja...@apache.org on 2018/01/14 16:02:57 UTC

[29/32] juneau git commit: Javadoc updates.

http://git-wip-us.apache.org/repos/asf/juneau/blob/5686b8d6/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlBuilder.java
----------------------------------------------------------------------
diff --git a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlBuilder.java b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlBuilder.java
index 9437a10..9c6476c 100644
--- a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlBuilder.java
+++ b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlBuilder.java
@@ -14,7 +14,7 @@ package org.apache.juneau.dto.html5;
 
 /**
  * Various useful static methods for creating HTML elements.
- *
+ * 
  * <h6 class='topic'>Additional Information</h6>
  * <ul class='doctree'>
  * 	<li class='link'>
@@ -24,14 +24,14 @@ package org.apache.juneau.dto.html5;
  * 			<li class='sublink'>
  * 				<a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a>
  * 		</ul>
- *		</li>
+ * 	</li>
  * </ul>
  */
 public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link A} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final A a() {
@@ -41,7 +41,7 @@ public class HtmlBuilder {
 	/**
 	 * Creates an {@link A} element with the specified {@link A#href(Object)} attribute and {@link A#children(Object[])}
 	 * nodes.
-	 *
+	 * 
 	 * @param href The {@link A#href(Object)} attribute.
 	 * @param children The {@link A#children(Object[])} nodes.
 	 * @return The new element.
@@ -52,7 +52,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Abbr} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Abbr abbr() {
@@ -62,7 +62,7 @@ public class HtmlBuilder {
 	/**
 	 * Creates an {@link Abbr} element with the specified {@link Abbr#title(String)} attribute and
 	 * {@link Abbr#children(Object[])} nodes.
-	 *
+	 * 
 	 * @param title The {@link Abbr#title(String)} attribute.
 	 * @param children The {@link Abbr#children(Object[])} nodes.
 	 * @return The new element.
@@ -73,7 +73,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Address} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Address address() {
@@ -82,7 +82,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Address} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -92,7 +92,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Area} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Area area() {
@@ -102,7 +102,7 @@ public class HtmlBuilder {
 	/**
 	 * Creates an {@link Area} element with the specified {@link Area#shape(String)}, {@link Area#coords(String)},
 	 * and {@link Area#href(Object)} attributes.
-	 *
+	 * 
 	 * @param shape The {@link Area#shape(String)} attribute.
 	 * @param coords The {@link Area#coords(String)} attribute.
 	 * @param href The {@link Area#href(Object)} attribute.
@@ -114,7 +114,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Article} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Article article() {
@@ -123,7 +123,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Article} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -133,7 +133,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Aside} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Aside aside() {
@@ -142,7 +142,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Aside} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -152,7 +152,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Audio} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Audio audio() {
@@ -161,7 +161,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Audio} element with the specified {@link Audio#src(Object)} attribute.
-	 *
+	 * 
 	 * @param src The {@link Audio#src(Object)} attribute.
 	 * @return The new element.
 	 */
@@ -171,7 +171,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link B} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final B b() {
@@ -180,7 +180,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link B} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -190,7 +190,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Base} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Base base() {
@@ -199,7 +199,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Base} element with the specified {@link Base#href(Object)} attribute.
-	 *
+	 * 
 	 * @param href The {@link Base#href(Object)} attribute.
 	 * @return The new element.
 	 */
@@ -209,7 +209,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Bdi} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Bdi bdi() {
@@ -218,7 +218,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Bdi} element with the specified {@link Bdi#text(Object)} node.
-	 *
+	 * 
 	 * @param text The {@link Bdi#text(Object)} node.
 	 * @return The new element.
 	 */
@@ -228,7 +228,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Bdo} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Bdo bdo() {
@@ -237,7 +237,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Bdo} element with the specified {@link Bdo#dir(String)} attribute and child nodes.
-	 *
+	 * 
 	 * @param dir The {@link Bdo#dir(String)} attribute.
 	 * @param children The child nodes.
 	 * @return The new element.
@@ -248,7 +248,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Blockquote} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Blockquote blockquote() {
@@ -257,7 +257,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Blockquote} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -267,7 +267,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Body} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Body body() {
@@ -276,7 +276,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Body} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -286,7 +286,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Br} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Br br() {
@@ -295,7 +295,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Button} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Button button() {
@@ -304,7 +304,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Button} element with the specified {@link Button#type(String)} attribute.
-	 *
+	 * 
 	 * @param type The {@link Button#type(String)} attribute.
 	 * @return The new element.
 	 */
@@ -315,7 +315,7 @@ public class HtmlBuilder {
 	/**
 	 * Creates a {@link Button} element with the specified {@link Button#type(String)} attribute and
 	 * {@link Button#children(Object[])} nodes.
-	 *
+	 * 
 	 * @param type The {@link Button#type(String)} attribute.
 	 * @param children The {@link Button#children(Object[])} nodes.
 	 * @return The new element.
@@ -335,7 +335,7 @@ public class HtmlBuilder {
 	/**
 	 * Creates a {@link Canvas} element with the specified {@link Canvas#width(Object)} and
 	 * {@link Canvas#height(Object)} attributes.
-	 *
+	 * 
 	 * @param width The {@link Canvas#width(Object)} attribute.
 	 * @param height The {@link Canvas#height(Object)} attribute.
 	 * @return The new element.
@@ -346,7 +346,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Caption} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Caption caption() {
@@ -355,7 +355,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Caption} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -365,7 +365,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Cite} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Cite cite() {
@@ -374,7 +374,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Cite} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -384,7 +384,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Code} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Code code() {
@@ -393,7 +393,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Code} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -403,9 +403,9 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Col} element.
-	 *
+	 * 
 	 * @return The new element.
-	 *
+	 * 
 	 */
 	public static final Col col() {
 		return new Col();
@@ -413,7 +413,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Col} element with the specified {@link Col#span(Object)} attribute.
-	 *
+	 * 
 	 * @param span The {@link Col#span(Object)} attribute.
 	 * @return The new element.
 	 */
@@ -423,7 +423,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Colgroup} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Colgroup colgroup() {
@@ -432,7 +432,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Colgroup} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -442,7 +442,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Data} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Data data() {
@@ -451,7 +451,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Data} element with the specified {@link Data#value(Object)} attribute and child node.
-	 *
+	 * 
 	 * @param value The {@link Data#value(Object)} attribute.
 	 * @param child The child node.
 	 * @return The new element.
@@ -462,7 +462,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Datalist} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Datalist datalist() {
@@ -471,7 +471,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Datalist} element with the specified {@link Datalist#id(String)} attribute and child nodes.
-	 *
+	 * 
 	 * @param id The {@link Datalist#id(String)} attribute.
 	 * @param children The child nodes.
 	 * @return The new element.
@@ -482,7 +482,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Dd} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Dd dd() {
@@ -491,7 +491,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Dd} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -501,7 +501,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Del} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Del del() {
@@ -510,7 +510,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Del} element with the specified {@link Del#children(Object[])} node.
-	 *
+	 * 
 	 * @param children The {@link Del#children(Object[])} node.
 	 * @return The new element.
 	 */
@@ -520,7 +520,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Dfn} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Dfn dfn() {
@@ -529,7 +529,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Dfn} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -539,7 +539,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Div} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Div div() {
@@ -548,7 +548,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Div} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -558,7 +558,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Dl} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Dl dl() {
@@ -567,7 +567,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Dl} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -577,7 +577,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Dt} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Dt dt() {
@@ -586,7 +586,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Dt} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -596,7 +596,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Em} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Em em() {
@@ -605,7 +605,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Em} element with the specified {@link Em#children(Object[])} nodes.
-	 *
+	 * 
 	 * @param children The {@link Em#children(Object[])} nodes.
 	 * @return The new element.
 	 */
@@ -615,7 +615,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Embed} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Embed embed() {
@@ -624,7 +624,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Embed} element with the specified {@link Embed#src(Object)} attribute.
-	 *
+	 * 
 	 * @param src The {@link Embed#src(Object)} attribute.
 	 * @return The new element.
 	 */
@@ -634,7 +634,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Fieldset} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Fieldset fieldset() {
@@ -643,7 +643,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Fieldset} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -653,7 +653,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Figcaption} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Figcaption figcaption() {
@@ -662,7 +662,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Figcaption} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -672,7 +672,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Figure} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Figure figure() {
@@ -681,7 +681,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Figure} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -691,7 +691,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Footer} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Footer footer() {
@@ -700,7 +700,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Footer} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -710,7 +710,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Form} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Form form() {
@@ -719,7 +719,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Form} element with the specified {@link Form#action(String)} attribute.
-	 *
+	 * 
 	 * @param action The {@link Form#action(String)} attribute.
 	 * @return The new element.
 	 */
@@ -729,7 +729,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Form} element with the specified {@link Form#action(String)} attribute and child nodes.
-	 *
+	 * 
 	 * @param action The {@link Form#action(String)} attribute.
 	 * @param children The child nodes.
 	 * @return The new element.
@@ -740,7 +740,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link H1} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final H1 h1() {
@@ -749,7 +749,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link H1} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -759,7 +759,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link H2} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final H2 h2() {
@@ -768,7 +768,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link H2} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -778,7 +778,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link H3} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final H3 h3() {
@@ -787,7 +787,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link H3} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -797,7 +797,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link H4} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final H4 h4() {
@@ -806,7 +806,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link H4} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -816,7 +816,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link H5} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final H5 h5() {
@@ -825,7 +825,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link H5} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -843,7 +843,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link H6} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -853,7 +853,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Head} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Head head() {
@@ -862,7 +862,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Head} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -872,7 +872,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Header} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Header header() {
@@ -881,7 +881,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Header} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -891,7 +891,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Hr} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Hr hr() {
@@ -900,7 +900,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Html} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Html html() {
@@ -909,7 +909,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Html} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -919,7 +919,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link I} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final I i() {
@@ -928,7 +928,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link I} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -938,7 +938,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Iframe} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Iframe iframe() {
@@ -947,7 +947,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Iframe} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -957,7 +957,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Img} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Img img() {
@@ -966,7 +966,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Img} element with the specified {@link Img#src(Object)} attribute.
-	 *
+	 * 
 	 * @param src The {@link Img#src(Object)} attribute.
 	 * @return The new element.
 	 */
@@ -976,7 +976,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Input} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Input input() {
@@ -985,7 +985,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Input} element with the specified {@link Input#type(String)} attribute.
-	 *
+	 * 
 	 * @param type The {@link Input#type(String)} attribute.
 	 * @return The new element.
 	 */
@@ -995,7 +995,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Ins} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Ins ins() {
@@ -1004,7 +1004,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Ins} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1014,7 +1014,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Kbd} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Kbd kbd() {
@@ -1023,7 +1023,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Kbd} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1033,7 +1033,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Keygen} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Keygen keygen() {
@@ -1042,7 +1042,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Label} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Label label() {
@@ -1051,7 +1051,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Label} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1061,7 +1061,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Legend} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Legend legend() {
@@ -1070,7 +1070,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Legend} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1080,7 +1080,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Li} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Li li() {
@@ -1089,7 +1089,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Li} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1099,7 +1099,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Link} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Link link() {
@@ -1108,7 +1108,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Link} element with the specified {@link Link#href(Object)} attribute.
-	 *
+	 * 
 	 * @param href The {@link Link#href(Object)} attribute.
 	 * @return The new element.
 	 */
@@ -1118,7 +1118,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Main} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Main main() {
@@ -1127,7 +1127,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Main} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1137,7 +1137,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Map} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Map map() {
@@ -1146,7 +1146,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Map} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1156,7 +1156,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Mark} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Mark mark() {
@@ -1165,7 +1165,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Mark} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1175,7 +1175,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Meta} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Meta meta() {
@@ -1184,7 +1184,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Meter} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Meter meter() {
@@ -1193,7 +1193,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Meter} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1203,7 +1203,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Nav} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Nav nav() {
@@ -1212,7 +1212,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Nav} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1222,7 +1222,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Noscript} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Noscript noscript() {
@@ -1231,7 +1231,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Noscript} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1241,7 +1241,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Object2} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Object2 object() {
@@ -1250,7 +1250,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Object2} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1260,7 +1260,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Ol} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Ol ol() {
@@ -1269,7 +1269,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Ol} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1279,7 +1279,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Optgroup} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Optgroup optgroup() {
@@ -1288,7 +1288,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Optgroup} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1298,7 +1298,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Option} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Option option() {
@@ -1307,7 +1307,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Option} element with the specified {@link Option#text(Object)} attribute.
-	 *
+	 * 
 	 * @param text The {@link Option#text(Object)} attribute.
 	 * @return The new element.
 	 */
@@ -1318,7 +1318,7 @@ public class HtmlBuilder {
 	/**
 	 * Creates an {@link Option} element with the specified {@link Option#value(Object)} attribute and
 	 * {@link Option#text(Object)} node.
-	 *
+	 * 
 	 * @param value The {@link Option#value(Object)} attribute.
 	 * @param text The {@link Option#text(Object)} node.
 	 * @return The new element.
@@ -1329,7 +1329,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Output} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Output output() {
@@ -1338,7 +1338,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Output} element with the specified {@link Output#name(String)} attribute.
-	 *
+	 * 
 	 * @param name The {@link Output#name(String)} attribute.
 	 * @return The new element.
 	 */
@@ -1348,7 +1348,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link P} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final P p() {
@@ -1357,7 +1357,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link P} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1367,7 +1367,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Param} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Param param() {
@@ -1377,7 +1377,7 @@ public class HtmlBuilder {
 	/**
 	 * Creates a {@link Param} element with the specified {@link Param#name(String)} and {@link Param#value(Object)}
 	 * attributes.
-	 *
+	 * 
 	 * @param name The {@link Param#name(String)} attribute.
 	 * @param value The {@link Param#value(Object)} attribute.
 	 * @return The new element.
@@ -1388,7 +1388,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Pre} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Pre pre() {
@@ -1397,7 +1397,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Pre} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1407,7 +1407,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Progress} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Progress progress() {
@@ -1416,7 +1416,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Progress} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1426,7 +1426,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Q} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Q q() {
@@ -1435,7 +1435,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Q} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1445,7 +1445,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Rb} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Rb rb() {
@@ -1454,7 +1454,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Rb} element with the specified {@link Rb#children(Object[])} nodes.
-	 *
+	 * 
 	 * @param children The {@link Rb#children(Object[])} nodes.
 	 * @return The new element.
 	 */
@@ -1464,7 +1464,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Rp} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Rp rp() {
@@ -1473,7 +1473,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Rp} element with the specified {@link Rp#children(Object[])} nodes.
-	 *
+	 * 
 	 * @param children The {@link Rp#children(Object[])} nodes.
 	 * @return The new element.
 	 */
@@ -1483,7 +1483,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Rt} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Rt rt() {
@@ -1492,7 +1492,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Rt} element with the specified {@link Rt#children(Object[])} nodes.
-	 *
+	 * 
 	 * @param children The {@link Rt#children(Object[])} nodes.
 	 * @return The new element.
 	 */
@@ -1502,7 +1502,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Rtc} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Rtc rtc() {
@@ -1511,7 +1511,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link Rtc} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1521,7 +1521,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Ruby} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Ruby ruby() {
@@ -1530,7 +1530,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Ruby} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1540,7 +1540,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link S} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final S s() {
@@ -1549,7 +1549,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an {@link S} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1559,7 +1559,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Samp} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Samp samp() {
@@ -1568,7 +1568,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Samp} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1578,7 +1578,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Script} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Script script() {
@@ -1588,7 +1588,7 @@ public class HtmlBuilder {
 	/**
 	 * Creates a {@link Script} element with the specified {@link Script#type(String)} attribute and
 	 * {@link Script#text(Object)} node.
-	 *
+	 * 
 	 * @param type The {@link Script#type(String)} attribute.
 	 * @param text The child text node.
 	 * @return The new element.
@@ -1599,7 +1599,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Section} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Section section() {
@@ -1608,7 +1608,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Section} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1618,7 +1618,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Select} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Select select() {
@@ -1627,7 +1627,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Select} element with the specified {@link Select#name(String)} attribute and child nodes.
-	 *
+	 * 
 	 * @param name The {@link Select#name(String)} attribute.
 	 * @param children The child nodes.
 	 * @return The new element.
@@ -1638,7 +1638,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Small} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Small small() {
@@ -1647,7 +1647,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Small} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1657,7 +1657,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Source} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Source source() {
@@ -1667,7 +1667,7 @@ public class HtmlBuilder {
 	/**
 	 * Creates a {@link Source} element with the specified {@link Source#src(Object)} and {@link Source#type(String)}
 	 * attributes.
-	 *
+	 * 
 	 * @param src The {@link Source#src(Object)} attribute.
 	 * @param type The {@link Source#type(String)} attribute.
 	 * @return The new element.
@@ -1678,7 +1678,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Span} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Span span() {
@@ -1687,7 +1687,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Span} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1697,7 +1697,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Strong} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Strong strong() {
@@ -1706,7 +1706,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Strong} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1716,7 +1716,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Style} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Style style() {
@@ -1725,7 +1725,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Style} element with the specified {@link Style#text(Object)} node.
-	 *
+	 * 
 	 * @param text The {@link Style#text(Object)} node.
 	 * @return The new element.
 	 */
@@ -1735,7 +1735,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Sub} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Sub sub() {
@@ -1744,7 +1744,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Sub} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1754,7 +1754,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Sup} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Sup sup() {
@@ -1763,7 +1763,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Sup} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1773,7 +1773,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Table} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Table table() {
@@ -1782,7 +1782,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Table} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1792,7 +1792,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Tbody} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Tbody tbody() {
@@ -1801,7 +1801,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Tbody} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1811,7 +1811,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Td} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Td td() {
@@ -1820,7 +1820,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Td} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1830,7 +1830,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Template} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Template template() {
@@ -1839,7 +1839,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Template} element with the specified {@link Template#id(String)} attribute and child nodes.
-	 *
+	 * 
 	 * @param id The {@link Template#id(String)} attribute.
 	 * @param children The child nodes.
 	 * @return The new element.
@@ -1850,7 +1850,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Textarea} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Textarea textarea() {
@@ -1860,7 +1860,7 @@ public class HtmlBuilder {
 	/**
 	 * Creates a {@link Textarea} element with the specified {@link Textarea#name(String)} attribute and
 	 * {@link Textarea#text(Object)} node.
-	 *
+	 * 
 	 * @param name The {@link Textarea#name(String)} attribute.
 	 * @param text The {@link Textarea#text(Object)} node.
 	 * @return The new element.
@@ -1871,7 +1871,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Tfoot} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Tfoot tfoot() {
@@ -1880,7 +1880,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Tfoot} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1890,7 +1890,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Th} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Th th() {
@@ -1899,7 +1899,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Th} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1909,7 +1909,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Thead} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Thead thead() {
@@ -1918,7 +1918,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Thead} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1928,7 +1928,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Time} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Time time() {
@@ -1937,7 +1937,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Time} element with the specified {@link Time#children(Object[])} nodes.
-	 *
+	 * 
 	 * @param children The {@link Time#children(Object[])} nodes.
 	 * @return The new element.
 	 */
@@ -1947,7 +1947,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Title} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Title title() {
@@ -1956,7 +1956,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Title} element with the specified {@link Title#text(Object)} node.
-	 *
+	 * 
 	 * @param text The {@link Title#text(Object)} node.
 	 * @return The new element.
 	 */
@@ -1966,7 +1966,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Tr} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Tr tr() {
@@ -1975,7 +1975,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Tr} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -1985,7 +1985,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Track} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Track track() {
@@ -1995,7 +1995,7 @@ public class HtmlBuilder {
 	/**
 	 * 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.
 	 * @return The new element.
@@ -2006,7 +2006,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link U} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final U u() {
@@ -2015,7 +2015,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link U} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -2025,7 +2025,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Ul} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Ul ul() {
@@ -2034,7 +2034,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Ul} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -2044,7 +2044,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Var} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Var var() {
@@ -2053,7 +2053,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Var} element with the specified child nodes.
-	 *
+	 * 
 	 * @param children The child nodes.
 	 * @return The new element.
 	 */
@@ -2063,7 +2063,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Video} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Video video() {
@@ -2072,7 +2072,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates a {@link Video} element with the specified {@link Video#src(Object)} attribute.
-	 *
+	 * 
 	 * @param src The {@link Video#src(Object)} attribute.
 	 * @return The new element.
 	 */
@@ -2082,7 +2082,7 @@ public class HtmlBuilder {
 
 	/**
 	 * Creates an empty {@link Wbr} element.
-	 *
+	 * 
 	 * @return The new element.
 	 */
 	public static final Wbr wbr() {

http://git-wip-us.apache.org/repos/asf/juneau/blob/5686b8d6/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElement.java
----------------------------------------------------------------------
diff --git a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElement.java b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElement.java
index 1f93e87..1ce5ccd 100644
--- a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElement.java
+++ b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElement.java
@@ -27,10 +27,10 @@ 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'>
@@ -40,7 +40,7 @@ import org.apache.juneau.xml.annotation.*;
  * 			<li class='sublink'>
  * 				<a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a>
  * 		</ul>
- *		</li>
+ * 	</li>
  * </ul>
  */
 @org.apache.juneau.html.annotation.Html(asXml=true)
@@ -50,7 +50,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * The attributes of this element.
-	 *
+	 * 
 	 * @return The attributes of this element.
 	 */
 	@Xml(format=ATTRS)
@@ -61,7 +61,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * Sets the attributes for this element.
-	 *
+	 * 
 	 * @param attrs The new attributes for this element.
 	 * @return This object (for method chaining).
 	 */
@@ -78,7 +78,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * Adds an arbitrary attribute to this element.
-	 *
+	 * 
 	 * @param key The attribute name.
 	 * @param val The attribute value.
 	 * @return This object (for method chaining).
@@ -94,18 +94,18 @@ public abstract class HtmlElement {
 
 	/**
 	 * 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).
@@ -119,7 +119,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * 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.
 	 */
@@ -129,7 +129,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * 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.
@@ -143,7 +143,7 @@ public abstract class HtmlElement {
 	/**
 	 * <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).
 	 */
@@ -154,7 +154,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -166,7 +166,7 @@ public abstract class HtmlElement {
 	/**
 	 * <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).
@@ -178,7 +178,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -189,7 +189,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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}.
@@ -202,7 +202,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -213,7 +213,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -224,7 +224,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -235,7 +235,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -246,7 +246,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -257,7 +257,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -269,7 +269,7 @@ public abstract class HtmlElement {
 	/**
 	 * <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).
 	 */
@@ -280,7 +280,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -291,7 +291,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -303,7 +303,7 @@ public abstract class HtmlElement {
 	/**
 	 * <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).
 	 */
@@ -314,7 +314,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -326,7 +326,7 @@ public abstract class HtmlElement {
 	/**
 	 * <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).
 	 */
@@ -337,7 +337,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -348,7 +348,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -359,7 +359,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -370,7 +370,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -381,7 +381,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -392,7 +392,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -403,7 +403,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -414,7 +414,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -425,7 +425,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -436,7 +436,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -448,7 +448,7 @@ public abstract class HtmlElement {
 	/**
 	 * <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).
 	 */
@@ -460,7 +460,7 @@ public abstract class HtmlElement {
 	/**
 	 * <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).
 	 */
@@ -472,7 +472,7 @@ public abstract class HtmlElement {
 	/**
 	 * <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).
 	 */
@@ -484,7 +484,7 @@ public abstract class HtmlElement {
 	/**
 	 * <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).
 	 */
@@ -495,7 +495,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -507,7 +507,7 @@ public abstract class HtmlElement {
 	/**
 	 * <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).
 	 */
@@ -519,7 +519,7 @@ public abstract class HtmlElement {
 	/**
 	 * <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).
 	 */
@@ -530,7 +530,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -542,7 +542,7 @@ public abstract class HtmlElement {
 	/**
 	 * <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).
 	 */
@@ -553,7 +553,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -565,7 +565,7 @@ public abstract class HtmlElement {
 	/**
 	 * <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).
 	 */
@@ -576,7 +576,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -587,7 +587,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -598,7 +598,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -609,7 +609,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -621,7 +621,7 @@ public abstract class HtmlElement {
 	/**
 	 * <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).
 	 */
@@ -632,7 +632,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -643,7 +643,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -654,7 +654,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -665,7 +665,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -676,7 +676,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -687,7 +687,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -698,7 +698,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -709,7 +709,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -720,7 +720,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -731,7 +731,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -743,7 +743,7 @@ public abstract class HtmlElement {
 	/**
 	 * <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).
 	 */
@@ -754,7 +754,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -766,7 +766,7 @@ public abstract class HtmlElement {
 	/**
 	 * <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).
 	 */
@@ -777,7 +777,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -788,7 +788,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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}.
@@ -801,7 +801,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -812,7 +812,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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}.
@@ -825,7 +825,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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).
 	 */
@@ -836,7 +836,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <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}.

http://git-wip-us.apache.org/repos/asf/juneau/blob/5686b8d6/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementContainer.java
----------------------------------------------------------------------
diff --git a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementContainer.java b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementContainer.java
index d504dbd..bae530d 100644
--- a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementContainer.java
+++ b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementContainer.java
@@ -23,7 +23,7 @@ import org.apache.juneau.xml.annotation.*;
 
 /**
  * A subclass of HTML elements that contain only other elements, not text.
- *
+ * 
  * <h6 class='topic'>Additional Information</h6>
  * <ul class='doctree'>
  * 	<li class='link'>
@@ -33,7 +33,7 @@ import org.apache.juneau.xml.annotation.*;
  * 			<li class='sublink'>
  * 				<a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a>
  * 		</ul>
- *		</li>
+ * 	</li>
  * </ul>
  */
 public class HtmlElementContainer extends HtmlElement {
@@ -42,7 +42,7 @@ public class HtmlElementContainer extends HtmlElement {
 
 	/**
 	 * The children of this element.
-	 *
+	 * 
 	 * @return The children of this element.
 	 */
 	@Xml(format=ELEMENTS)
@@ -53,7 +53,7 @@ public class HtmlElementContainer extends HtmlElement {
 
 	/**
 	 * Sets the children for this container.
-	 *
+	 * 
 	 * @param children The new children for this container.
 	 * @return This object (for method chaining).
 	 */
@@ -65,7 +65,7 @@ public class HtmlElementContainer extends HtmlElement {
 
 	/**
 	 * Returns the child node at the specified index.
-	 *
+	 * 
 	 * @param index The index of the node in the list of children.
 	 * @return The child node, or <jk>null</jk> if it doesn't exist.
 	 */
@@ -75,13 +75,13 @@ public class HtmlElementContainer extends HtmlElement {
 
 	/**
 	 * Returns the child node at the specified address.
-	 *
+	 * 
 	 * <p>
 	 * Indexes are zero-indexed.
-	 *
+	 * 
 	 * <p>
 	 * For example, calling <code>getChild(1,2,3);</code> will return the 4th child of the 3rd child of the 2nd child.
-	 *
+	 * 
 	 * @param index The child indexes.
 	 * @return The child node, or <jk>null</jk> if it doesn't point to a valid child.
 	 */
@@ -104,7 +104,7 @@ public class HtmlElementContainer extends HtmlElement {
 
 	/**
 	 * Returns the child node at the specified index.
-	 *
+	 * 
 	 * @param type The class type of the node.
 	 * @param index The index of the node in the list of children.
 	 * @return The child node, or <jk>null</jk> if it doesn't exist.
@@ -119,7 +119,7 @@ public class HtmlElementContainer extends HtmlElement {
 
 	/**
 	 * Adds one or more child elements to this element.
-	 *
+	 * 
 	 * @param children The children to add as child elements.
 	 * @return This object (for method chaining).
 	 */
@@ -135,7 +135,7 @@ public class HtmlElementContainer extends HtmlElement {
 
 	/**
 	 * Adds a child element to this element.
-	 *
+	 * 
 	 * @param child The child to add as a child element.
 	 * @return This object (for method chaining).
 	 */

http://git-wip-us.apache.org/repos/asf/juneau/blob/5686b8d6/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementMixed.java
----------------------------------------------------------------------
diff --git a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementMixed.java b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementMixed.java
index 7c3a0fb..d717973 100644
--- a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementMixed.java
+++ b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementMixed.java
@@ -23,7 +23,7 @@ import org.apache.juneau.xml.annotation.*;
 
 /**
  * A subclass of HTML elements that contain mixed content (elements and text).
- *
+ * 
  * <h6 class='topic'>Additional Information</h6>
  * <ul class='doctree'>
  * 	<li class='link'>
@@ -33,7 +33,7 @@ import org.apache.juneau.xml.annotation.*;
  * 			<li class='sublink'>
  * 				<a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a>
  * 		</ul>
- *		</li>
+ * 	</li>
  * </ul>
  */
 public class HtmlElementMixed extends HtmlElement {
@@ -42,7 +42,7 @@ public class HtmlElementMixed extends HtmlElement {
 
 	/**
 	 * The children of this element.
-	 *
+	 * 
 	 * @return The children of this element.
 	 */
 	@Xml(format=MIXED)
@@ -53,7 +53,7 @@ public class HtmlElementMixed extends HtmlElement {
 
 	/**
 	 * Sets the children of this element.
-	 *
+	 * 
 	 * @param children The new children of this element.
 	 * @return This object (for method chaining).
 	 */
@@ -65,7 +65,7 @@ public class HtmlElementMixed extends HtmlElement {
 
 	/**
 	 * Returns the child node at the specified index.
-	 *
+	 * 
 	 * @param index The index of the node in the list of children.
 	 * @return The child node, or <jk>null</jk> if it doesn't exist.
 	 */
@@ -75,13 +75,13 @@ public class HtmlElementMixed extends HtmlElement {
 
 	/**
 	 * Returns the child node at the specified address.
-	 *
+	 * 
 	 * <p>
 	 * Indexes are zero-indexed.
-	 *
+	 * 
 	 * <p>
 	 * For example, calling <code>getChild(1,2,3);</code> will return the 4th child of the 3rd child of the 2nd child.
-	 *
+	 * 
 	 * @param index The child indexes.
 	 * @return The child node, or <jk>null</jk> if it doesn't point to a valid child.
 	 */
@@ -104,7 +104,7 @@ public class HtmlElementMixed extends HtmlElement {
 
 	/**
 	 * Returns the child node at the specified index.
-	 *
+	 * 
 	 * @param type The class type of the node.
 	 * @param index The index of the node in the list of children.
 	 * @return The child node, or <jk>null</jk> if it doesn't exist.
@@ -120,7 +120,7 @@ public class HtmlElementMixed extends HtmlElement {
 
 	/**
 	 * Adds one or more child elements to this element.
-	 *
+	 * 
 	 * @param children
 	 * 	The children to add as child elements.
 	 * 	Can be a mixture of strings and {@link HtmlElement} objects.
@@ -136,7 +136,7 @@ public class HtmlElementMixed extends HtmlElement {
 
 	/**
 	 * Adds a child element to this element.
-	 *
+	 * 
 	 * @param child
 	 * 	The child to add as a child element.
 	 * 	Can be a string or {@link HtmlElement}.

http://git-wip-us.apache.org/repos/asf/juneau/blob/5686b8d6/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementRawText.java
----------------------------------------------------------------------
diff --git a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementRawText.java b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementRawText.java
index eb0c239..ff2bdc8 100644
--- a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementRawText.java
+++ b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementRawText.java
@@ -18,7 +18,7 @@ import org.apache.juneau.xml.annotation.*;
 /**
  * A subclass of HTML elements that contain <a href="https://www.w3.org/TR/html51/syntax.html#raw-text">raw text</a>
  * only.
- *
+ * 
  * <h6 class='topic'>Additional Information</h6>
  * <ul class='doctree'>
  * 	<li class='link'>
@@ -28,7 +28,7 @@ import org.apache.juneau.xml.annotation.*;
  * 			<li class='sublink'>
  * 				<a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a>
  * 		</ul>
- *		</li>
+ * 	</li>
  * </ul>
  */
 public class HtmlElementRawText extends HtmlElement {
@@ -37,7 +37,7 @@ public class HtmlElementRawText extends HtmlElement {
 
 	/**
 	 * Returns the inner text of this element.
-	 *
+	 * 
 	 * @return The inner text of this element, or <jk>null</jk> if no text is set.
 	 */
 	@Xml(format=XmlFormat.TEXT_PWS)
@@ -48,7 +48,7 @@ public class HtmlElementRawText extends HtmlElement {
 
 	/**
 	 * Sets the inner text of this element.
-	 *
+	 * 
 	 * @param text The inner text of this element, or <jk>null</jk> if no text is set.
 	 * @return This object (for method chaining).
 	 */
@@ -60,7 +60,7 @@ public class HtmlElementRawText extends HtmlElement {
 
 	/**
 	 * Sets the text node on this element.
-	 *
+	 * 
 	 * @param text The text node to add to this element.
 	 * @return This object (for method chaining).
 	 */

http://git-wip-us.apache.org/repos/asf/juneau/blob/5686b8d6/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementText.java
----------------------------------------------------------------------
diff --git a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementText.java b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementText.java
index e403656..8b41d14 100644
--- a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementText.java
+++ b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementText.java
@@ -17,7 +17,7 @@ import org.apache.juneau.xml.annotation.*;
 
 /**
  * A subclass of HTML elements that contain text only.
- *
+ * 
  * <h6 class='topic'>Additional Information</h6>
  * <ul class='doctree'>
  * 	<li class='link'>
@@ -27,7 +27,7 @@ import org.apache.juneau.xml.annotation.*;
  * 			<li class='sublink'>
  * 				<a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a>
  * 		</ul>
- *		</li>
+ * 	</li>
  * </ul>
  */
 public class HtmlElementText extends HtmlElement {
@@ -36,7 +36,7 @@ public class HtmlElementText extends HtmlElement {
 
 	/**
 	 * Returns the inner text of this element.
-	 *
+	 * 
 	 * @return The inner text of this element, or <jk>null</jk> if no text is set.
 	 */
 	@Xml(format=XmlFormat.TEXT)
@@ -47,7 +47,7 @@ public class HtmlElementText extends HtmlElement {
 
 	/**
 	 * Sets the inner text of this element.
-	 *
+	 * 
 	 * @param text The inner text of this element, or <jk>null</jk> if no text is set.
 	 * @return This object (for method chaining).
 	 */
@@ -59,7 +59,7 @@ public class HtmlElementText extends HtmlElement {
 
 	/**
 	 * Sets the text node on this element.
-	 *
+	 * 
 	 * @param text The text node to add to this element.
 	 * @return This object (for method chaining).
 	 */

http://git-wip-us.apache.org/repos/asf/juneau/blob/5686b8d6/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementVoid.java
----------------------------------------------------------------------
diff --git a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementVoid.java b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementVoid.java
index 25bf964..a320550 100644
--- a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementVoid.java
+++ b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementVoid.java
@@ -18,10 +18,10 @@ import org.apache.juneau.xml.annotation.*;
 
 /**
  * A subclass of HTML elements that have no content or end tags.
- *
+ * 
  * <p>
  * See <a href="https://www.w3.org/TR/html51/syntax.html#void-elements">void elements</a>
- *
+ * 
  * <h6 class='topic'>Additional Information</h6>
  * <ul class='doctree'>
  * 	<li class='link'>
@@ -31,7 +31,7 @@ import org.apache.juneau.xml.annotation.*;
  * 			<li class='sublink'>
  * 				<a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a>
  * 		</ul>
- *		</li>
+ * 	</li>
  * </ul>
  */
 @Xml(format=VOID)

http://git-wip-us.apache.org/repos/asf/juneau/blob/5686b8d6/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/I.java
----------------------------------------------------------------------
diff --git a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/I.java b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/I.java
index fa9399c..ea864e1 100644
--- a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/I.java
+++ b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/I.java
@@ -17,7 +17,7 @@ import org.apache.juneau.annotation.*;
 /**
  * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/text-level-semantics.html#the-i-element">&lt;i&gt;</a>
  * element.
- *
+ * 
  * <h6 class='topic'>Additional Information</h6>
  * <ul class='doctree'>
  * 	<li class='link'>
@@ -27,7 +27,7 @@ import org.apache.juneau.annotation.*;
  * 			<li class='sublink'>
  * 				<a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a>
  * 		</ul>
- *		</li>
+ * 	</li>
  * </ul>
  */
 @Bean(typeName="i")

http://git-wip-us.apache.org/repos/asf/juneau/blob/5686b8d6/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/Iframe.java
----------------------------------------------------------------------
diff --git a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/Iframe.java b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/Iframe.java
index f0add3f..cf09aec 100644
--- a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/Iframe.java
+++ b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/Iframe.java
@@ -21,7 +21,7 @@ import org.apache.juneau.annotation.*;
 /**
  * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#the-iframe-element">&lt;iframe&gt;</a>
  * element.
- *
+ * 
  * <h6 class='topic'>Additional Information</h6>
  * <ul class='doctree'>
  * 	<li class='link'>
@@ -31,7 +31,7 @@ import org.apache.juneau.annotation.*;
  * 			<li class='sublink'>
  * 				<a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a>
  * 		</ul>
- *		</li>
+ * 	</li>
  * </ul>
  */
 @Bean(typeName="iframe")
@@ -40,10 +40,10 @@ public class Iframe extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-height">height</a>
 	 * attribute.
-	 *
+	 * 
 	 * <p>
 	 * Vertical dimension.
-	 *
+	 * 
 	 * @param height
 	 * 	The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
@@ -56,10 +56,10 @@ public class Iframe extends HtmlElementMixed {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-iframe-name">name</a> attribute.
-	 *
+	 * 
 	 * <p>
 	 * Name of nested browsing context.
-	 *
+	 * 
 	 * @param name The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
@@ -71,10 +71,10 @@ public class Iframe extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-iframe-sandbox">sandbox</a>
 	 * attribute.
-	 *
+	 * 
 	 * <p>
 	 * Security rules for nested content.
-	 *
+	 * 
 	 * @param sandbox The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
@@ -85,17 +85,17 @@ public class Iframe extends HtmlElementMixed {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-iframe-src">src</a> attribute.
-	 *
+	 * 
 	 * <p>
 	 * Address of the resource.
-	 *
+	 * 
 	 * <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 src
 	 * 	The new value for this attribute.
 	 * 	Typically a {@link URL} or {@link String}.
@@ -109,10 +109,10 @@ public class Iframe extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-iframe-srcdoc">srcdoc</a>
 	 * attribute.
-	 *
+	 * 
 	 * <p>
 	 * A document to render in the iframe.
-	 *
+	 * 
 	 * @param srcdoc The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
@@ -123,10 +123,10 @@ public class Iframe extends HtmlElementMixed {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-width">width</a> attribute.
-	 *
+	 * 
 	 * <p>
 	 * Horizontal dimension.
-	 *
+	 * 
 	 * @param width
 	 * 	The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.

http://git-wip-us.apache.org/repos/asf/juneau/blob/5686b8d6/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/Img.java
----------------------------------------------------------------------
diff --git a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/Img.java b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/Img.java
index 0a78701..e022d73 100644
--- a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/Img.java
+++ b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/Img.java
@@ -21,7 +21,7 @@ import org.apache.juneau.annotation.*;
 /**
  * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#the-img-element">&lt;img&gt;</a>
  * element.
- *
+ * 
  * <h6 class='topic'>Additional Information</h6>
  * <ul class='doctree'>
  * 	<li class='link'>
@@ -31,7 +31,7 @@ import org.apache.juneau.annotation.*;
  * 			<li class='sublink'>
  * 				<a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a>
  * 		</ul>
- *		</li>
+ * 	</li>
  * </ul>
  */
 @Bean(typeName="img")
@@ -39,10 +39,10 @@ public class Img extends HtmlElementVoid {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-img-alt">alt</a> attribute.
-	 *
+	 * 
 	 * <p>
 	 * Replacement text for use when images are not available.
-	 *
+	 * 
 	 * @param alt The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
@@ -54,10 +54,10 @@ public class Img extends HtmlElementVoid {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-img-crossorigin">crossorigin</a>
 	 * attribute.
-	 *
+	 * 
 	 * <p>
 	 * How the element handles cross-origin requests.
-	 *
+	 * 
 	 * @param crossorigin The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
@@ -69,10 +69,10 @@ public class Img extends HtmlElementVoid {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-height">height</a>
 	 * attribute.
-	 *
+	 * 
 	 * <p>
 	 * Vertical dimension.
-	 *
+	 * 
 	 * @param height
 	 * 	The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
@@ -85,10 +85,10 @@ public class Img extends HtmlElementVoid {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-img-ismap">ismap</a> attribute.
-	 *
+	 * 
 	 * <p>
 	 * Whether the image is a server-side image map.
-	 *
+	 * 
 	 * @param ismap
 	 * 	The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
@@ -101,17 +101,17 @@ public class Img extends HtmlElementVoid {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-img-src">src</a> attribute.
-	 *
+	 * 
 	 * <p>
 	 * Address of the resource.
-	 *
+	 * 
 	 * <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 src
 	 * 	The new value for this attribute.
 	 * 	Typically a {@link URL} or {@link String}.
@@ -125,10 +125,10 @@ public class Img extends HtmlElementVoid {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-hyperlink-usemap">usemap</a>
 	 * attribute.
-	 *
+	 * 
 	 * <p>
 	 * Name of image map to use.
-	 *
+	 * 
 	 * @param usemap The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
@@ -139,10 +139,10 @@ public class Img extends HtmlElementVoid {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-width">width</a> attribute.
-	 *
+	 * 
 	 * <p>
 	 * Horizontal dimension.
-	 *
+	 * 
 	 * @param width
 	 * 	The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.