http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/annotation/Consumes.java
----------------------------------------------------------------------
diff --git 
a/juneau-core/src/main/java/org/apache/juneau/annotation/Consumes.java 
b/juneau-core/src/main/java/org/apache/juneau/annotation/Consumes.java
index 867db1c..49d524d 100644
--- a/juneau-core/src/main/java/org/apache/juneau/annotation/Consumes.java
+++ b/juneau-core/src/main/java/org/apache/juneau/annotation/Consumes.java
@@ -24,23 +24,23 @@ import org.apache.juneau.parser.*;
  *
  * <h5 class='section'>Description:</h5>
  * <p>
- *     Provides a way to define the contents of {@link Parser#getMediaTypes()} 
through an annotation.
+ * Provides a way to define the contents of {@link Parser#getMediaTypes()} 
through an annotation.
  * <p>
- *     The {@link Parser#getMediaTypes()} default implementation gathers the 
media types by looking
- *             for this annotation.
- *     It should be noted that this annotation is optional and that the {@link 
Parser#getMediaTypes()} method can
- *             be overridden by subclasses to return the media types 
programmatically.
+ * The {@link Parser#getMediaTypes()} default implementation gathers the media 
types by looking
+ *     for this annotation.
+ * It should be noted that this annotation is optional and that the {@link 
Parser#getMediaTypes()} method can
+ *     be overridden by subclasses to return the media types programmatically.
  *
  * <h5 class='section'>Example:</h5>
  * <p>
- *     Standard example:
+ * Standard example:
  * <p class='bcode'>
  *     <ja>@Consumes</ja>(<js>"application/json,text/json"</js>)
  *     <jk>public class</jk> JsonParser <jk>extends</jk> ReaderParser {...}
  * </p>
  * <p>
- *     The media types can also be <code>media-range</code> values per
- *             <a class="doclink" 
href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1";>RFC2616/14.1</a>.
+ * The media types can also be <code>media-range</code> values per
+ *     <a class="doclink" 
href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1";>RFC2616/14.1</a>.
  * <p class='bcode'>
  *     <jc>// Consumes any text</jc>
  *     <ja>@Consumes</ja>(<js>"text\/*"</js>)
@@ -60,7 +60,7 @@ public @interface Consumes {
        /**
         * A comma-delimited list of media types that the parser can handle.
         * <p>
-        *      Can contain meta-characters per the <code>media-type</code> 
specification of
+        * Can contain meta-characters per the <code>media-type</code> 
specification of
         *      <a class="doclink" 
href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1";>RFC2616/14.1</a>
         * @return The media types that the parser can handle.
         */

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/annotation/Pojo.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/annotation/Pojo.java 
b/juneau-core/src/main/java/org/apache/juneau/annotation/Pojo.java
index 0f0e821..18897a1 100644
--- a/juneau-core/src/main/java/org/apache/juneau/annotation/Pojo.java
+++ b/juneau-core/src/main/java/org/apache/juneau/annotation/Pojo.java
@@ -40,7 +40,7 @@ public @interface Pojo {
         *
         * <h5 class='section'>Example:</h5>
         * <p>
-        *      In this case, a swap is being applied to a bean that will force 
it to be serialized as a <code>String</code>
+        * In this case, a swap is being applied to a bean that will force it 
to be serialized as a <code>String</code>
         * <p class='bcode'>
         *      <jc>// Our bean class</jc>
         *      <ja>@Pojo</ja>(swap=BSwap.<jk>class</jk>)
@@ -73,7 +73,7 @@ public @interface Pojo {
         *      }
         * </p>
         * <p>
-        *      Note that using this annotation is functionally equivalent to 
adding swaps to the serializers and parsers:
+        * Note that using this annotation is functionally equivalent to adding 
swaps to the serializers and parsers:
         * <p class='bcode'>
         *      WriterSerializer s = <jk>new</jk> 
JsonSerializer.addPojoSwaps(BSwap.<jk>class</jk>);
         *      ReaderParser p = <jk>new</jk> 
JsonParser.addPojoSwaps(BSwap.<jk>class</jk>);

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/annotation/Produces.java
----------------------------------------------------------------------
diff --git 
a/juneau-core/src/main/java/org/apache/juneau/annotation/Produces.java 
b/juneau-core/src/main/java/org/apache/juneau/annotation/Produces.java
index 2361734..4e76c64 100644
--- a/juneau-core/src/main/java/org/apache/juneau/annotation/Produces.java
+++ b/juneau-core/src/main/java/org/apache/juneau/annotation/Produces.java
@@ -24,25 +24,25 @@ import org.apache.juneau.serializer.*;
  *
  * <h5 class='section'>Description:</h5>
  * <p>
- *     Provides a way to define the contents of {@link 
Serializer#getMediaTypes()} through an annotation.
+ * Provides a way to define the contents of {@link Serializer#getMediaTypes()} 
through an annotation.
  * <p>
- *     The {@link Serializer#getMediaTypes()} default implementation gathers 
the media types by looking
- *             for this annotation.
- *     It should be noted that this annotation is optional and that the {@link 
Serializer#getMediaTypes()} method can
- *             be overridden by subclasses to return the media types 
programmatically.
+ * The {@link Serializer#getMediaTypes()} default implementation gathers the 
media types by looking
+ *     for this annotation.
+ * It should be noted that this annotation is optional and that the {@link 
Serializer#getMediaTypes()} method can
+ *     be overridden by subclasses to return the media types programmatically.
  *
  * <h5 class='section'>Example:</h5>
  * <p>
- *     Standard example:
+ * Standard example:
  * <p class='bcode'>
  *     <ja>@Produces</ja>(<js>"application/json,text/json"</js>)
  *     <jk>public class</jk> JsonSerializer <jk>extends</jk> WriterSerializer 
{...}
  * </p>
  * <p>
- *     The media types can also be <code>media-range</code> values per
- *             <a class="doclink" 
href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1";>RFC2616/14.1</a>.
- *     When meta-characters are used, you should specify the {@link 
#contentType()} value to
- *             indicate the real media type value that can be set on the 
<code>Content-Type</code> response header.
+ * The media types can also be <code>media-range</code> values per
+ *     <a class="doclink" 
href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1";>RFC2616/14.1</a>.
+ * When meta-characters are used, you should specify the {@link 
#contentType()} value to
+ *     indicate the real media type value that can be set on the 
<code>Content-Type</code> response header.
  *
  * <p class='bcode'>
  *     <jc>// Produces any text</jc>
@@ -63,7 +63,7 @@ public @interface Produces {
        /**
         * A comma-delimited list of the media types that the serializer can 
handle.
         * <p>
-        *      Can contain meta-characters per the <code>media-type</code> 
specification of
+        * Can contain meta-characters per the <code>media-type</code> 
specification of
         *      <a class="doclink" 
href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1";>RFC2616/14.1</a>
         * @return The media types that the parser can handle.
         */
@@ -72,9 +72,9 @@ public @interface Produces {
        /**
         * The content type that this serializer produces.
         * <p>
-        *      Can be used to override the <code>Content-Type</code> response 
type if the media types
-        *              are <code>media-ranges</code> with meta-characters, or 
the <code>Content-Type</code>
-        *              differs from the media type for some reason.
+        * Can be used to override the <code>Content-Type</code> response type 
if the media types
+        *      are <code>media-ranges</code> with meta-characters, or the 
<code>Content-Type</code>
+        *      differs from the media type for some reason.
         * @return The content type that this serializer produces, or blank if 
no overriding value exists.
         */
        String contentType() default "";

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/annotation/URI.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/annotation/URI.java 
b/juneau-core/src/main/java/org/apache/juneau/annotation/URI.java
index 7e7c0ad..7a3a19c 100644
--- a/juneau-core/src/main/java/org/apache/juneau/annotation/URI.java
+++ b/juneau-core/src/main/java/org/apache/juneau/annotation/URI.java
@@ -23,16 +23,16 @@ import org.apache.juneau.serializer.*;
 /**
  * Used to identify a class or bean property as a URI.
  * <p>
- *     By default, instances of {@link URL} and {@link URI} are considered 
URIs during serialization, and are
- *             handled differently depending on the serializer (e.g. 
<code>HtmlSerializer</code> creates a hyperlink,
- *             <code>RdfXmlSerializer</code> creates an 
<code>rdf:resource</code> object, etc...).
+ * By default, instances of {@link URL} and {@link URI} are considered URIs 
during serialization, and are
+ *     handled differently depending on the serializer (e.g. 
<code>HtmlSerializer</code> creates a hyperlink,
+ *     <code>RdfXmlSerializer</code> creates an <code>rdf:resource</code> 
object, etc...).
  * <p>
- *     This annotation allows you to identify other classes that return URIs 
via <code>toString()</code> as URI objects.
+ * This annotation allows you to identify other classes that return URIs via 
<code>toString()</code> as URI objects.
  * <p>
- *     Relative URIs are automatically prepended with {@link 
SerializerContext#SERIALIZER_absolutePathUriBase} and {@link 
SerializerContext#SERIALIZER_relativeUriBase}
- *             during serialization just like relative <code>URIs</code>.
+ * Relative URIs are automatically prepended with {@link 
SerializerContext#SERIALIZER_absolutePathUriBase} and {@link 
SerializerContext#SERIALIZER_relativeUriBase}
+ *     during serialization just like relative <code>URIs</code>.
  * <p>
- *     This annotation can be applied to classes, interfaces, or bean property 
methods for fields.
+ * This annotation can be applied to classes, interfaces, or bean property 
methods for fields.
  *
  * <h5 class='section'>Example:</h5>
  * <p class='bcode'>

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/Link.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/Link.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/Link.java
index 8c747ae..e3a3cd3 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/Link.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/Link.java
@@ -21,12 +21,12 @@ import org.apache.juneau.utils.*;
 /**
  * Simple bean that implements a hyperlink for the HTML serializer.
  * <p>
- *     The name and url properties correspond to the following parts of a 
hyperlink in an HTML document...
+ * The name and url properties correspond to the following parts of a 
hyperlink in an HTML document...
  * <p class='bcode'>
  *     <xt>&lt;a</xt> 
<xa>href</xa>=<xs>'href'</xs><xt>&gt;</xt>name<xt>&lt;/a&gt;</xt>
  * <p>
- *     When encountered by the {@link HtmlSerializer} class, this object gets 
converted to a hyperlink.<br>
- *     All other serializers simply convert it to a simple bean.
+ * When encountered by the {@link HtmlSerializer} class, this object gets 
converted to a hyperlink.<br>
+ * All other serializers simply convert it to a simple bean.
  */
 @HtmlLink(nameProperty = "name", hrefProperty = "href")
 public class Link implements Comparable<Link> {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/atom/Feed.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Feed.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Feed.java
index 8af8d4f..6c7f6a8 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Feed.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Feed.java
@@ -23,7 +23,7 @@ import org.apache.juneau.xml.annotation.*;
 /**
  * Top-level ATOM feed object.
  * <p>
- *     Represents an <code>atomFeed</code> construct in the RFC4287 
specification.
+ * Represents an <code>atomFeed</code> construct in the RFC4287 specification.
  * <p>
  * <h6 class='figure'>Schema</h6>
  * <p class='bcode'>

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/atom/Link.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Link.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Link.java
index 40578bb..90f4b28 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Link.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Link.java
@@ -127,7 +127,7 @@ public class Link extends Common {
        /**
         * Sets the content type of the target of this link.
         * <p>
-        *      Must be one of the following:
+        * Must be one of the following:
         * <ul>
         *      <li><js>"text"</js>
         *      <li><js>"html"</js>

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/atom/Text.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Text.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Text.java
index 7ff2d02..6a58ff9 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Text.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Text.java
@@ -81,7 +81,7 @@ public class Text extends Common {
        /**
         * Sets the content type of this content.
         * <p>
-        *      Must be one of the following:
+        * Must be one of the following:
         * <ul>
         *      <li><js>"text"</js>
         *      <li><js>"html"</js>

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/cognos/Column.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/cognos/Column.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/cognos/Column.java
index a494cb9..f880815 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/cognos/Column.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/cognos/Column.java
@@ -19,7 +19,7 @@ import org.apache.juneau.xml.annotation.*;
 /**
  * Represents a meta-data column in a Cognos dataset.
  * <p>
- *     When serialized to XML, creates the following construct:
+ * When serialized to XML, creates the following construct:
  * <p class='bcode'>
  *     <xt>&lt;item</xt> <xa>name</xa>=<xs>'name'</xs> 
<xa>type</xa>=<xs>'xs:String'</xs> <xa>length</xa>=<xs>'255'</xs>/&gt;
  * </p>
@@ -61,11 +61,11 @@ public class Column {
        /**
         * Associates a POJO swap with this column.
         * <p>
-        *      Typically used to define columns that don't exist on the 
underlying beans being serialized.
+        * Typically used to define columns that don't exist on the underlying 
beans being serialized.
         * <p>
-        *      For example, the <code>AddressBookResource</code> sample 
defined the following POJO swap
-        *              to define an additional <js>"numAddresses"</js> column 
even though no such property exists
-        *              on the serialized beans.
+        * For example, the <code>AddressBookResource</code> sample defined the 
following POJO swap
+        *      to define an additional <js>"numAddresses"</js> column even 
though no such property exists
+        *      on the serialized beans.
         * <p class='bcode'>
         *      Column c = <jk>new</jk> Column(<js>"numAddresses"</js>, 
<js>"xs:int"</js>)
         *              .addPojoSwaps(

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/cognos/DataSet.java
----------------------------------------------------------------------
diff --git 
a/juneau-core/src/main/java/org/apache/juneau/dto/cognos/DataSet.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/cognos/DataSet.java
index 5a57e52..2829631 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/cognos/DataSet.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/cognos/DataSet.java
@@ -21,7 +21,7 @@ import org.apache.juneau.xml.annotation.*;
 /**
  * Represents a Cognos dataset.
  * <p>
- *     When serialized to XML, creates the following construct (example pulled 
from <code>AddressBookResource</code>):
+ * When serialized to XML, creates the following construct (example pulled 
from <code>AddressBookResource</code>):
  * <p class='bcode'>
  *     <xt>&lt;?xml</xt> <xa>version</xa>=<xs>'1.0'</xs> 
<xa>encoding</xa>=<xs>'UTF-8'</xs><xt>?&gt;</xt>
  *     <xt>&lt;c:dataset 
<xa>xmlns:c</xa>=<xs>'http://developer.cognos.com/schemas/xmldata/1/'</xs>&gt;</xt>
@@ -45,12 +45,12 @@ import org.apache.juneau.xml.annotation.*;
  *     <xt>&lt;/c:dataset&gt;</xt>
  * </p>
  * <p>
- *     Only 2-dimentional POJOs (arrays or collections of maps or beans) can 
be serialized to Cognos.
+ * Only 2-dimentional POJOs (arrays or collections of maps or beans) can be 
serialized to Cognos.
  *
  * <h5 class='section'>Example:</h5>
  * <p>
- *     The construct shown above is a serialized <code>AddressBook</code> 
object which is a subclass of <code>LinkedList&lt;Person&gt;</code>.
- *     The code for generating the XML is as follows...
+ * The construct shown above is a serialized <code>AddressBook</code> object 
which is a subclass of <code>LinkedList&lt;Person&gt;</code>.
+ * The code for generating the XML is as follows...
  * </p>
  * <p class='bcode'>
  *     Column[] items = {
@@ -87,7 +87,7 @@ public class DataSet {
         *
         * @param columns The meta-data that represents the columns in the 
dataset.
         * @param o The POJO being serialized to Cognos.
-        *      Must be an array/collection of beans/maps.
+        * Must be an array/collection of beans/maps.
         * @param session The bean session used to convert POJOs to strings.
         * @throws Exception An error occurred trying to serialize the POJO.
         */
@@ -123,7 +123,7 @@ public class DataSet {
        /**
         * Represents a row of data.
         * <p>
-        *      When serialized to XML, creates the following construct 
(example pulled from <code>AddressBookResource</code>):
+        * When serialized to XML, creates the following construct (example 
pulled from <code>AddressBookResource</code>):
         * <p class='bcode'>
         *      <xt>&lt;row&gt;</xt>
         *              <xt>&lt;value&gt;</xt>Barack 
Obama<xt>&lt;/value&gt;</xt>

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/A.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/A.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/A.java
index dc3c3cc..2bb181f 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/A.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/A.java
@@ -27,7 +27,7 @@ public class A extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/links.html#attr-hyperlink-download";>download</a>
 attribute.
         * Whether to download the resource instead of navigating to it, and 
its file name if so.
         * @param download The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final A download(Object download) {
@@ -39,7 +39,7 @@ public class A extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/links.html#attr-hyperlink-href";>href</a> 
attribute.
         * Address of the hyperlink.
         * @param href The new value for this attribute.
-        *      Typically a {@link URL} or {@link String}.
+        * Typically a {@link URL} or {@link String}.
         * @return This object (for method chaining).
         */
        public final A href(Object href) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Area.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Area.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Area.java
index 711f26d..cc4894d 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Area.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Area.java
@@ -49,7 +49,7 @@ public class Area extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/links.html#attr-hyperlink-download";>download</a>
 attribute.
         * Whether to download the resource instead of navigating to it, and 
its file name if so.
         * @param download The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Area download(Object download) {
@@ -61,7 +61,7 @@ public class Area extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/links.html#attr-hyperlink-href";>href</a> 
attribute.
         * Address of the hyperlink.
         * @param href The new value for this attribute.
-        *      Typically a {@link URL} or {@link String}.
+        * Typically a {@link URL} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Area href(Object href) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Audio.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Audio.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Audio.java
index 8f1edb4..8c4fcc6 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Audio.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Audio.java
@@ -27,7 +27,7 @@ public class Audio extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-autoplay";>autoplay</a>
 attribute.
         * Hint that the media resource can be started automatically when the 
page is loaded.
         * @param autoplay The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Audio autoplay(Object autoplay) {
@@ -39,7 +39,7 @@ public class Audio extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-controls";>controls</a>
 attribute.
         * Show user agent controls.
         * @param controls The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Audio controls(Object controls) {
@@ -62,7 +62,7 @@ public class Audio extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-loop";>loop</a>
 attribute.
         * Whether to loop the media resource.
         * @param loop The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Audio loop(Object loop) {
@@ -85,7 +85,7 @@ public class Audio extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-muted";>muted</a>
 attribute.
         * Whether to mute the media resource by default.
         * @param muted The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Audio muted(Object muted) {
@@ -108,7 +108,7 @@ public class Audio extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-src";>src</a>
 attribute.
         * Address of the resource.
         * @param src The new value for this attribute.
-        *      Typically a {@link URL} or {@link String}.
+        * Typically a {@link URL} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Audio src(Object src) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Base.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Base.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Base.java
index 818d44f..a607bcf 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Base.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Base.java
@@ -27,7 +27,7 @@ public class Base extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/document-metadata.html#attr-base-href";>href</a>
 attribute.
         * Document base URL.
         * @param href The new value for this attribute.
-        *      Typically a {@link URL} or {@link String}.
+        * Typically a {@link URL} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Base href(Object href) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Button.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Button.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Button.java
index f0c5eda..4c47ab2 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Button.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Button.java
@@ -25,7 +25,7 @@ public class Button extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-fe-autofocus";>autofocus</a> 
attribute.
         * Automatically focus the form control when the page is loaded.
         * @param autofocus The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Button autofocus(Object autofocus) {
@@ -37,7 +37,7 @@ public class Button extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-fe-disabled";>disabled</a> 
attribute.
         * Whether the form control is disabled.
         * @param disabled The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Button disabled(Object disabled) {
@@ -148,7 +148,7 @@ public class Button extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-button-value";>value</a> 
attribute.
         * Value to be used for form submission.
         * @param value The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Button value(Object value) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Canvas.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Canvas.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Canvas.java
index 8c1f482..759fab6 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Canvas.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Canvas.java
@@ -25,7 +25,7 @@ public class Canvas extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/scripting-1.html#attr-canvas-height";>height</a>
 attribute.
         * Vertical dimension.
         * @param height The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Canvas height(Object height) {
@@ -37,7 +37,7 @@ public class Canvas extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/scripting-1.html#attr-canvas-width";>width</a> 
attribute.
         * Horizontal dimension.
         * @param width The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Canvas width(Object width) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Col.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Col.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Col.java
index 97fea6f..9b4169e 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Col.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Col.java
@@ -25,7 +25,7 @@ public class Col extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/tabular-data.html#attr-col-span";>span</a> 
attribute.
         * Number of columns spanned by the element.
         * @param span The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Col span(Object span) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Colgroup.java
----------------------------------------------------------------------
diff --git 
a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Colgroup.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Colgroup.java
index 27e3f56..84ffc0a 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Colgroup.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Colgroup.java
@@ -25,7 +25,7 @@ public class Colgroup extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/tabular-data.html#attr-colgroup-span";>span</a>
 attribute.
         * Number of columns spanned by the element.
         * @param span The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Colgroup span(Object span) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Data.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Data.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Data.java
index 493186a..31d3281 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Data.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Data.java
@@ -25,7 +25,7 @@ public class Data extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/text-level-semantics.html#attr-data-value";>value</a>
 attribute.
         * Machine-readable value.
         * @param value The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Data value(Object value) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Embed.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Embed.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Embed.java
index 2624f72..9f189a6 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Embed.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Embed.java
@@ -27,7 +27,7 @@ public class Embed extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-height";>height</a>
 attribute.
         * Vertical dimension.
         * @param height The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Embed height(Object height) {
@@ -39,7 +39,7 @@ public class Embed extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-embed-src";>src</a>
 attribute.
         * Address of the resource.
         * @param src The new value for this attribute.
-        *      Typically a {@link URL} or {@link String}.
+        * Typically a {@link URL} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Embed src(Object src) {
@@ -62,7 +62,7 @@ public class Embed extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-width";>width</a>
 attribute.
         * Horizontal dimension.
         * @param width The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Embed width(Object width) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Fieldset.java
----------------------------------------------------------------------
diff --git 
a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Fieldset.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Fieldset.java
index 38d015a..a1a41eb 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Fieldset.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Fieldset.java
@@ -25,7 +25,7 @@ public class Fieldset extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-fieldset-disabled";>disabled</a>
 attribute.
         * Whether the form control is disabled.
         * @param disabled The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Fieldset disabled(Boolean disabled) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Form.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Form.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Form.java
index 552622a..1960b36 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Form.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Form.java
@@ -91,7 +91,7 @@ public class Form extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-fs-novalidate";>novalidate</a> 
attribute.
         * Bypass form control validation for form submission.
         * @param novalidate The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Form novalidate(Boolean novalidate) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElement.java
----------------------------------------------------------------------
diff --git 
a/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElement.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElement.java
index 22e2de2..da82778 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElement.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElement.java
@@ -111,7 +111,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}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public HtmlElement contenteditable(Object contenteditable) {
@@ -132,7 +132,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}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public HtmlElement hidden(Object hidden) {
@@ -663,7 +663,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}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public HtmlElement spellcheck(Object spellcheck) {
@@ -684,7 +684,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}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public HtmlElement tabindex(Object tabindex) {
@@ -705,7 +705,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}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public HtmlElement translate(Object translate) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementMixed.java
----------------------------------------------------------------------
diff --git 
a/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementMixed.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementMixed.java
index 65b779e..0430528 100644
--- 
a/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementMixed.java
+++ 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementMixed.java
@@ -75,7 +75,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.
+        * Can be a mixture of strings and {@link HtmlElement} objects.
         * @return This object (for method chaining).
         */
        @SuppressWarnings("hiding")
@@ -92,7 +92,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}.
+        * Can be a string or {@link HtmlElement}.
         * @return This object (for method chaining).
         */
        public HtmlElement child(Object child) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Iframe.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Iframe.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Iframe.java
index e7be7d3..4f01b54 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Iframe.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Iframe.java
@@ -27,7 +27,7 @@ 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.
         * Vertical dimension.
         * @param height The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Iframe height(Object height) {
@@ -61,7 +61,7 @@ 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.
         * Address of the resource.
         * @param src The new value for this attribute.
-        *      Typically a {@link URL} or {@link String}.
+        * Typically a {@link URL} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Iframe src(Object src) {
@@ -84,7 +84,7 @@ 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.
         * Horizontal dimension.
         * @param width The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Iframe width(Object width) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Img.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Img.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Img.java
index 9f7d7e7..5696d23 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Img.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Img.java
@@ -48,7 +48,7 @@ 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.
         * Vertical dimension.
         * @param height The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Img height(Object height) {
@@ -60,7 +60,7 @@ 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.
         * Whether the image is a server-side image map.
         * @param ismap The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Img ismap(Object ismap) {
@@ -72,7 +72,7 @@ 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.
         * Address of the resource.
         * @param src The new value for this attribute.
-        *      Typically a {@link URL} or {@link String}.
+        * Typically a {@link URL} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Img src(Object src) {
@@ -95,7 +95,7 @@ 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.
         * Horizontal dimension.
         * @param width The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Img width(Object width) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Input.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Input.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Input.java
index fdcc6bf..8c9343c 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Input.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Input.java
@@ -71,7 +71,7 @@ public class Input extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-input-checked";>checked</a> 
attribute.
         * Whether the command or control is checked.
         * @param checked The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Input checked(Object checked) {
@@ -94,7 +94,7 @@ public class Input extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-fe-disabled";>disabled</a> 
attribute.
         * Whether the form control is disabled.
         * @param disabled The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Input disabled(Object disabled) {
@@ -172,7 +172,7 @@ public class Input extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-height";>height</a>
 attribute.
         * Vertical dimension.
         * @param height The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Input height(Object height) {
@@ -206,7 +206,7 @@ public class Input extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-input-max";>max</a> attribute.
         * Maximum value.
         * @param max The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Input max(Object max) {
@@ -218,7 +218,7 @@ public class Input extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-input-maxlength";>maxlength</a>
 attribute.
         * Maximum length of value.
         * @param maxlength The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Input maxlength(Object maxlength) {
@@ -230,7 +230,7 @@ public class Input extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-input-min";>min</a> attribute.
         * Minimum value.
         * @param min The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Input min(Object min) {
@@ -242,7 +242,7 @@ public class Input extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-input-minlength";>minlength</a>
 attribute.
         * Minimum length of value.
         * @param minlength The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Input minlength(Object minlength) {
@@ -254,7 +254,7 @@ public class Input extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-input-multiple";>multiple</a> 
attribute.
         * Whether to allow multiple values.
         * @param multiple The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Input multiple(Object multiple) {
@@ -299,7 +299,7 @@ public class Input extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-input-readonly";>readonly</a> 
attribute.
         * Whether to allow the value to be edited by the user.
         * @param readonly The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Input readonly(Object readonly) {
@@ -311,7 +311,7 @@ public class Input extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-input-readonly";>required</a> 
attribute.
         * Whether the control is required for form submission.
         * @param required The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Input required(Object required) {
@@ -323,7 +323,7 @@ public class Input extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-input-size";>size</a> 
attribute.
         * Size of the control.
         * @param size The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Input size(Object size) {
@@ -335,7 +335,7 @@ public class Input extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-input-src";>src</a> attribute.
         * Address of the resource.
         * @param src The new value for this attribute.
-        *      Typically a {@link URL} or {@link String}.
+        * Typically a {@link URL} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Input src(Object src) {
@@ -369,7 +369,7 @@ public class Input extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-input-value";>value</a> 
attribute.
         * Value of the form control.
         * @param value The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Input value(Object value) {
@@ -381,7 +381,7 @@ public class Input extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-width";>width</a>
 attribute.
         * Horizontal dimension.
         * @param width The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Input width(Object width) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Keygen.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Keygen.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Keygen.java
index 4f69a64..3e5bd32 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Keygen.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Keygen.java
@@ -25,7 +25,7 @@ public class Keygen extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-fe-autofocus";>autofocus</a> 
attribute.
         * Automatically focus the form control when the page is loaded.
         * @param autofocus The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Keygen autofocus(Object autofocus) {
@@ -48,7 +48,7 @@ public class Keygen extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-fe-disabled";>disabled</a> 
attribute.
         * Whether the form control is disabled.
         * @param disabled The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Keygen disabled(Object disabled) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Link.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Link.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Link.java
index 51e37d1..ef9a4c4 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Link.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Link.java
@@ -38,7 +38,7 @@ public class Link extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/document-metadata.html#attr-link-href";>href</a>
 attribute.
         * Address of the hyperlink.
         * @param href The new value for this attribute.
-        *      Typically a {@link URL} or {@link String}.
+        * Typically a {@link URL} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Link href(Object href) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Meter.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Meter.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Meter.java
index 27cc447..26fdde0 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Meter.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Meter.java
@@ -25,7 +25,7 @@ public class Meter extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-meter-high";>high</a> 
attribute.
         * Low limit of high range.
         * @param high The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Meter high(Object high) {
@@ -37,7 +37,7 @@ public class Meter extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-meter-low";>low</a> attribute.
         * High limit of low range.
         * @param low The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Meter low(Object low) {
@@ -49,7 +49,7 @@ public class Meter extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-meter-max";>max</a> attribute.
         * Upper bound of range.
         * @param max The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Meter max(Object max) {
@@ -61,7 +61,7 @@ public class Meter extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-meter-min";>min</a> attribute.
         * Lower bound of range.
         * @param min The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Meter min(Object min) {
@@ -73,7 +73,7 @@ public class Meter extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-meter-optimum";>optimum</a> 
attribute.
         * Optimum value in gauge.
         * @param optimum The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Meter optimum(Object optimum) {
@@ -85,7 +85,7 @@ public class Meter extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-meter-value";>value</a> 
attribute.
         * Current value of the element.
         * @param value The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Meter value(Object value) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Object2.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Object2.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Object2.java
index 28ff4d1..601fd61 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Object2.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Object2.java
@@ -47,7 +47,7 @@ public class Object2 extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-height";>height</a>
 attribute.
         * Vertical dimension.
         * @param height The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Object2 height(Object height) {
@@ -81,7 +81,7 @@ public class Object2 extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-object-typemustmatch";>typemustmatch</a>
 attribute.
         * Whether the type attribute and the Content-Type value need to match 
for the resource to be used.
         * @param typemustmatch The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Object2 typemustmatch(Object typemustmatch) {
@@ -104,7 +104,7 @@ public class Object2 extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-width";>width</a>
 attribute.
         * Horizontal dimension.
         * @param width The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Object2 width(Object width) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Ol.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Ol.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Ol.java
index 7339383..81c4f77 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Ol.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Ol.java
@@ -25,7 +25,7 @@ public class Ol extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/grouping-content.html#attr-ol-reversed";>reversed</a>
 attribute.
         * Number the list backwards..
         * @param reversed The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Ol reversed(Object reversed) {
@@ -37,7 +37,7 @@ public class Ol extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/grouping-content.html#attr-ol-start";>start</a>
 attribute.
         * Ordinal value of the first item.
         * @param start The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Ol start(Object start) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Optgroup.java
----------------------------------------------------------------------
diff --git 
a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Optgroup.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Optgroup.java
index 6238c46..a3facae 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Optgroup.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Optgroup.java
@@ -25,7 +25,7 @@ public class Optgroup extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-optgroup-disabled";>disabled</a>
 attribute.
         * Whether the form control is disabled.
         * @param disabled The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Optgroup disabled(Object disabled) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Option.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Option.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Option.java
index ca84eb9..743a779 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Option.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Option.java
@@ -25,7 +25,7 @@ public class Option extends HtmlElementText {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-option-disabled";>disabled</a> 
attribute.
         * Whether the form control is disabled.
         * @param disabled The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Option disabled(Object disabled) {
@@ -48,7 +48,7 @@ public class Option extends HtmlElementText {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-option-selected";>selected</a> 
attribute.
         * Whether the option is selected by default.
         * @param selected The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Option selected(Object selected) {
@@ -60,7 +60,7 @@ public class Option extends HtmlElementText {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-option-value";>value</a> 
attribute.
         * Value to be used for form submission.
         * @param value The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Option value(Object value) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Param.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Param.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Param.java
index 88c952a..00a6136 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Param.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Param.java
@@ -36,7 +36,7 @@ public class Param extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-param-value";>value</a>
 attribute.
         * Value of parameter.
         * @param value The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Param value(Object value) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Progress.java
----------------------------------------------------------------------
diff --git 
a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Progress.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Progress.java
index 059bef7..2dd5ffb 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Progress.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Progress.java
@@ -25,7 +25,7 @@ public class Progress extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-progress-max";>max</a> 
attribute.
         * Upper bound of range.
         * @param max The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Progress max(Object max) {
@@ -37,7 +37,7 @@ public class Progress extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-progress-value";>value</a> 
attribute.
         * Current value of the element.
         * @param value The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Progress value(Object value) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Script.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Script.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Script.java
index 06f2fb4..3008010 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Script.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Script.java
@@ -27,7 +27,7 @@ public class Script extends HtmlElementRawText {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/scripting-1.html#attr-script-async";>async</a> 
attribute.
         * Execute script asynchronously.
         * @param async The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Script async(Object async) {
@@ -61,7 +61,7 @@ public class Script extends HtmlElementRawText {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/scripting-1.html#attr-script-defer";>defer</a> 
attribute.
         * Defer script execution.
         * @param defer The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Script defer(Object defer) {
@@ -73,7 +73,7 @@ public class Script extends HtmlElementRawText {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/scripting-1.html#attr-script-src";>src</a> 
attribute.
         * Address of the resource.
         * @param src The new value for this attribute.
-        *      Typically a {@link URL} or {@link String}.
+        * Typically a {@link URL} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Script src(Object src) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Select.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Select.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Select.java
index 1279781..0518c14 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Select.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Select.java
@@ -25,7 +25,7 @@ public class Select extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-fe-autofocus";>autofocus</a> 
attribute.
         * Automatically focus the form control when the page is loaded.
         * @param autofocus The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Select autofocus(Object autofocus) {
@@ -37,7 +37,7 @@ public class Select extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-fe-disabled";>disabled</a> 
attribute.
         * Whether the form control is disabled.
         * @param disabled The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Select disabled(Object disabled) {
@@ -60,7 +60,7 @@ public class Select extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-select-multiple";>multiple</a> 
attribute.
         * Whether to allow multiple values.
         * @param multiple The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Select multiple(Object multiple) {
@@ -83,7 +83,7 @@ public class Select extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-select-required";>required</a> 
attribute.
         * Whether the control is required for form submission.
         * @param required The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Select required(Object required) {
@@ -95,7 +95,7 @@ public class Select extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-select-size";>size</a> 
attribute.
         * Size of the control.
         * @param size The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Select size(Object size) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Source.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Source.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Source.java
index 0c4c5fb..d4e9286 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Source.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Source.java
@@ -27,7 +27,7 @@ public class Source extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-source-src";>src</a>
 attribute.
         * Address of the resource.
         * @param src The new value for this attribute.
-        *      Typically a {@link URL} or {@link String}.
+        * Typically a {@link URL} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Source src(Object src) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Table.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Table.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Table.java
index b4a61f0..f4aea7b 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Table.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Table.java
@@ -25,7 +25,7 @@ public class Table extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/tabular-data.html#attr-table-border";>border</a>
 attribute.
         * //sortable - Enables a sorting interface for the table.
         * @param border The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Table border(Object border) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Td.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Td.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Td.java
index 15acc90..c54414c 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Td.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Td.java
@@ -25,7 +25,7 @@ public class Td extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/tabular-data.html#attr-tdth-colspan";>colspan</a>
 attribute.
         * Number of columns that the cell is to span.
         * @param colspan The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Td colspan(Object colspan) {
@@ -48,7 +48,7 @@ public class Td extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/tabular-data.html#attr-tdth-rowspan";>rowspan</a>
 attribute.
         * Number of rows that the cell is to span.
         * @param rowspan The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Td rowspan(Object rowspan) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Textarea.java
----------------------------------------------------------------------
diff --git 
a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Textarea.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Textarea.java
index f92ed65..a5159e0 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Textarea.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Textarea.java
@@ -36,7 +36,7 @@ public class Textarea extends HtmlElementRawText {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-fe-autofocus";>autofocus</a> 
attribute.
         * Automatically focus the form control when the page is loaded.
         * @param autofocus The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Textarea autofocus(Boolean autofocus) {
@@ -48,7 +48,7 @@ public class Textarea extends HtmlElementRawText {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-textarea-cols";>cols</a> 
attribute.
         * Maximum number of characters per line.
         * @param cols The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Textarea cols(Object cols) {
@@ -71,7 +71,7 @@ public class Textarea extends HtmlElementRawText {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-fe-disabled";>disabled</a> 
attribute.
         * Whether the form control is disabled.
         * @param disabled The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Textarea disabled(Object disabled) {
@@ -105,7 +105,7 @@ public class Textarea extends HtmlElementRawText {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-textarea-maxlength";>maxlength</a>
 attribute.
         * Maximum length of value.
         * @param maxlength The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Textarea maxlength(Object maxlength) {
@@ -117,7 +117,7 @@ public class Textarea extends HtmlElementRawText {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-textarea-minlength";>minlength</a>
 attribute.
         * Minimum length of value.
         * @param minlength The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Textarea minlength(Object minlength) {
@@ -151,7 +151,7 @@ public class Textarea extends HtmlElementRawText {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-textarea-readonly";>readonly</a>
 attribute.
         * Whether to allow the value to be edited by the user.
         * @param readonly The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Textarea readonly(Object readonly) {
@@ -163,7 +163,7 @@ public class Textarea extends HtmlElementRawText {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-textarea-required";>required</a>
 attribute.
         * Whether the control is required for form submission.
         * @param required The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Textarea required(Object required) {
@@ -175,7 +175,7 @@ public class Textarea extends HtmlElementRawText {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/forms.html#attr-textarea-rows";>rows</a> 
attribute.
         * Number of lines to show.
         * @param rows The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Textarea rows(Number rows) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Th.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Th.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Th.java
index 8b268e3..3c44c0b 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Th.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Th.java
@@ -36,7 +36,7 @@ public class Th extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/tabular-data.html#attr-tdth-colspan";>colspan</a>
 attribute.
         * Number of columns that the cell is to span.
         * @param colspan The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Th colspan(Object colspan) {
@@ -59,7 +59,7 @@ public class Th extends HtmlElementMixed {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/tabular-data.html#attr-tdth-rowspan";>rowspan</a>
 attribute.
         * Number of rows that the cell is to span.
         * @param rowspan The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Th rowspan(Object rowspan) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Track.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Track.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Track.java
index fb52d84..15c1208 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Track.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Track.java
@@ -60,7 +60,7 @@ public class Track extends HtmlElementVoid {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-track-src";>src</a>
 attribute.
         * Address of the resource.
         * @param src The new value for this attribute.
-        *      Typically a {@link URL} or {@link String}.
+        * Typically a {@link URL} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Track src(Object src) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/html5/Video.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Video.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Video.java
index 0cd7b27..846fc32 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Video.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Video.java
@@ -27,7 +27,7 @@ public class Video extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-autoplay";>autoplay</a>
 attribute.
         * Hint that the media resource can be started automatically when the 
page is loaded.
         * @param autoplay The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Video autoplay(Object autoplay) {
@@ -39,7 +39,7 @@ public class Video extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-controls";>controls</a>
 attribute.
         * Show user agent controls.
         * @param controls The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Video controls(Object controls) {
@@ -62,7 +62,7 @@ public class Video extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-height";>height</a>
 attribute.
         * Vertical dimension.
         * @param height The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Video height(Object height) {
@@ -74,7 +74,7 @@ public class Video extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-loop";>loop</a>
 attribute.
         * Whether to loop the media resource.
         * @param loop The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Video loop(Object loop) {
@@ -97,7 +97,7 @@ public class Video extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-muted";>muted</a>
 attribute.
         * Whether to mute the media resource by default.
         * @param muted The new value for this attribute.
-        *      Typically a {@link Boolean} or {@link String}.
+        * Typically a {@link Boolean} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Video muted(Object muted) {
@@ -131,7 +131,7 @@ public class Video extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-src";>src</a>
 attribute.
         * Address of the resource.
         * @param src The new value for this attribute.
-        *      Typically a {@link URL} or {@link String}.
+        * Typically a {@link URL} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Video src(Object src) {
@@ -143,7 +143,7 @@ public class Video extends HtmlElementContainer {
         * <a class="doclink" 
href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-width";>width</a>
 attribute.
         * Horizontal dimension.
         * @param width The new value for this attribute.
-        *      Typically a {@link Number} or {@link String}.
+        * Typically a {@link Number} or {@link String}.
         * @return This object (for method chaining).
         */
        public final Video width(Object width) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/ef1ead8e/juneau-core/src/main/java/org/apache/juneau/dto/jsonschema/JsonType.java
----------------------------------------------------------------------
diff --git 
a/juneau-core/src/main/java/org/apache/juneau/dto/jsonschema/JsonType.java 
b/juneau-core/src/main/java/org/apache/juneau/dto/jsonschema/JsonType.java
index 9fcf5d0..a5ec69a 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/jsonschema/JsonType.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/jsonschema/JsonType.java
@@ -15,9 +15,9 @@ package org.apache.juneau.dto.jsonschema;
 /**
  * Represents possible JSON types in the JSON-Schema core specification.
  * <p>
- *     Implements custom <code>toString()</code> and 
<code>fromString(String)</code> methods
- *             that override the default serialization/parsing behavior of 
<code>Enum</code> types
- *             so that they are represented in lowercase form (as per the 
specification).
+ * Implements custom <code>toString()</code> and 
<code>fromString(String)</code> methods
+ *     that override the default serialization/parsing behavior of 
<code>Enum</code> types
+ *     so that they are represented in lowercase form (as per the 
specification).
  *
  * <h5 class='section'>Example:</h5>
  * <p class='bcode'>
@@ -26,7 +26,7 @@ package org.apache.juneau.dto.jsonschema;
  * </p>
  *
  * <p>
- *     Refer to <a class='doclink' 
href='package-summary.html#TOC'>org.apache.juneau.dto.jsonschema</a> for usage 
information.
+ * Refer to <a class='doclink' 
href='package-summary.html#TOC'>org.apache.juneau.dto.jsonschema</a> for usage 
information.
  */
 public enum JsonType {
 

Reply via email to