You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by ja...@apache.org on 2017/02/09 17:31:31 UTC

[09/14] incubator-juneau git commit: Add convenience property setters to serializers and parsers.

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/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 1b4643c..785e5ef 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
@@ -26,7 +26,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.
+	 * @param autoplay The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -38,7 +38,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.
+	 * @param controls The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -50,7 +50,7 @@ public class Audio extends HtmlElementContainer {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-crossorigin">crossorigin</a> attribute.
 	 * How the element handles crossorigin requests.
-	 * @param crossorigin - The new value for this attribute.
+	 * @param crossorigin The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Audio crossorigin(String crossorigin) {
@@ -61,7 +61,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.
+	 * @param loop The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -73,7 +73,7 @@ public class Audio extends HtmlElementContainer {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-mediagroup">mediagroup</a> attribute.
 	 * Groups media elements together with an implicit MediaController.
-	 * @param mediagroup - The new value for this attribute.
+	 * @param mediagroup The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Audio mediagroup(String mediagroup) {
@@ -84,7 +84,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.
+	 * @param muted The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -96,7 +96,7 @@ public class Audio extends HtmlElementContainer {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-preload">preload</a> attribute.
 	 * Hints how much buffering the media resource will likely need.
-	 * @param preload - The new value for this attribute.
+	 * @param preload The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Audio preload(Object preload) {
@@ -107,7 +107,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.
+	 * @param src The new value for this attribute.
 	 * 	Typically a {@link URL} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -116,6 +116,7 @@ public class Audio extends HtmlElementContainer {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/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 7e47750..e001ce1 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
@@ -26,7 +26,7 @@ public class Base extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param href The new value for this attribute.
 	 * 	Typically a {@link URL} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -38,7 +38,7 @@ public class Base extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-base-target">target</a> attribute.
 	 * Default browsing context for hyperlink navigation and form submission.
-	 * @param target - The new value for this attribute.
+	 * @param target The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Base target(String target) {
@@ -46,6 +46,7 @@ public class Base extends HtmlElementEmpty {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/juneau-core/src/main/java/org/apache/juneau/dto/html5/Blockquote.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Blockquote.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Blockquote.java
index 72ee4c4..9938a67 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Blockquote.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Blockquote.java
@@ -24,7 +24,7 @@ public class Blockquote extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/grouping-content.html#attr-blockquote-cite">cite</a> attribute.
 	 * Link to the source of the quotation..
-	 * @param cite - The new value for this attribute.
+	 * @param cite The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Blockquote cite(String cite) {
@@ -32,6 +32,7 @@ public class Blockquote extends HtmlElementMixed {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/juneau-core/src/main/java/org/apache/juneau/dto/html5/Body.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Body.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Body.java
index 9a6df15..c7e53fc 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Body.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Body.java
@@ -24,7 +24,7 @@ public class Body extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-window-onafterprint">onafterprint</a> attribute.
 	 * //onbeforeprint https://www.w3.org/TR/html5/webappapis.html#handler-window-onbeforeprint.
-	 * @param onafterprint - The new value for this attribute.
+	 * @param onafterprint The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Body onafterprint(String onafterprint) {
@@ -35,7 +35,7 @@ public class Body extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-window-onbeforeunload">onbeforeunload</a> attribute.
 	 * //onhashchange https://www.w3.org/TR/html5/webappapis.html#handler-window-onhashchange.
-	 * @param onbeforeunload - The new value for this attribute.
+	 * @param onbeforeunload The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Body onbeforeunload(String onbeforeunload) {
@@ -46,7 +46,7 @@ public class Body extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-window-onmessage">onmessage</a> attribute.
 	 * //onoffline https://www.w3.org/TR/html5/webappapis.html#handler-window-onoffline.
-	 * @param onmessage - The new value for this attribute.
+	 * @param onmessage The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Body onmessage(String onmessage) {
@@ -57,7 +57,7 @@ public class Body extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-window-ononline">ononline</a> attribute.
 	 * //onpagehide https://www.w3.org/TR/html5/webappapis.html#handler-window-onpagehide.
-	 * @param ononline - The new value for this attribute.
+	 * @param ononline The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Body ononline(String ononline) {
@@ -68,7 +68,7 @@ public class Body extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-window-onpageshow">onpageshow</a> attribute.
 	 * //onpopstate https://www.w3.org/TR/html5/webappapis.html#handler-window-onpopstate.
-	 * @param onpageshow - The new value for this attribute.
+	 * @param onpageshow The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Body onpageshow(String onpageshow) {
@@ -79,7 +79,7 @@ public class Body extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-window-onstorage">onstorage</a> attribute.
 	 * //onunload https://www.w3.org/TR/html5/webappapis.html#handler-window-onunload.
-	 * @param onstorage - The new value for this attribute.
+	 * @param onstorage The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Body onstorage(String onstorage) {
@@ -87,6 +87,7 @@ public class Body extends HtmlElementMixed {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/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 90faa1c..a18e255 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
@@ -24,7 +24,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.
+	 * @param autofocus The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -36,7 +36,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.
+	 * @param disabled The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -48,7 +48,7 @@ public class Button extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fae-form">form</a> attribute.
 	 * Associates the control with a form element.
-	 * @param form - The new value for this attribute.
+	 * @param form The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Button form(String form) {
@@ -59,7 +59,7 @@ public class Button extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formaction">formaction</a> attribute.
 	 * URL to use for form submission.
-	 * @param formaction - The new value for this attribute.
+	 * @param formaction The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Button formaction(String formaction) {
@@ -70,7 +70,7 @@ public class Button extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formenctype">formenctype</a> attribute.
 	 * Form data set encoding type to use for form submission.
-	 * @param formenctype - The new value for this attribute.
+	 * @param formenctype The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Button formenctype(String formenctype) {
@@ -81,7 +81,7 @@ public class Button extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formmethod">formmethod</a> attribute.
 	 * HTTP method to use for form submission.
-	 * @param formmethod - The new value for this attribute.
+	 * @param formmethod The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Button formmethod(String formmethod) {
@@ -92,7 +92,7 @@ public class Button extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formnovalidate">formnovalidate</a> attribute.
 	 * Bypass form control validation for form submission.
-	 * @param formnovalidate - The new value for this attribute.
+	 * @param formnovalidate The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Button formnovalidate(String formnovalidate) {
@@ -103,7 +103,7 @@ public class Button extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formtarget">formtarget</a> attribute.
 	 * Browsing context for form submission.
-	 * @param formtarget - The new value for this attribute.
+	 * @param formtarget The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Button formtarget(String formtarget) {
@@ -114,7 +114,7 @@ public class Button extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-menu">menu</a> attribute.
 	 * Specifies the element's designated pop-up menu.
-	 * @param menu - The new value for this attribute.
+	 * @param menu The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Button menu(String menu) {
@@ -125,7 +125,7 @@ public class Button extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-name">name</a> attribute.
 	 * Name of form control to use for form submission and in the form.elements API.
-	 * @param name - The new value for this attribute.
+	 * @param name The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Button name(String name) {
@@ -136,7 +136,7 @@ public class Button extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-button-type">type</a> attribute.
 	 * Type of button.
-	 * @param type - The new value for this attribute.
+	 * @param type The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Button type(String type) {
@@ -147,7 +147,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.
+	 * @param value The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -156,6 +156,7 @@ public class Button extends HtmlElementMixed {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/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 04968c0..013b857 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
@@ -24,7 +24,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.
+	 * @param height The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -36,7 +36,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.
+	 * @param width The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -45,6 +45,7 @@ public class Canvas extends HtmlElementContainer {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/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 7f1a766..2cdd46e 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
@@ -24,7 +24,7 @@ public class Col extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param span The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -33,6 +33,7 @@ public class Col extends HtmlElementEmpty {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/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 cbbf9a0..3bea974 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
@@ -24,7 +24,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.
+	 * @param span The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -33,6 +33,7 @@ public class Colgroup extends HtmlElementContainer {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/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 616f345..902241d 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
@@ -24,7 +24,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.
+	 * @param value The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -33,6 +33,7 @@ public class Data extends HtmlElementMixed {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/juneau-core/src/main/java/org/apache/juneau/dto/html5/Del.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Del.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Del.java
index b2b4155..88778dd 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Del.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Del.java
@@ -24,7 +24,7 @@ public class Del extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/edits.html#attr-mod-cite">cite</a> attribute.
 	 * Link to the source of the quotation or more information about the edit.
-	 * @param cite - The new value for this attribute.
+	 * @param cite The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Del cite(String cite) {
@@ -35,7 +35,7 @@ public class Del extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/edits.html#attr-mod-datetime">datetime</a> attribute.
 	 * Date and (optionally) time of the change.
-	 * @param datetime - The new value for this attribute.
+	 * @param datetime The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Del datetime(String datetime) {
@@ -43,6 +43,7 @@ public class Del extends HtmlElementMixed {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/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 8108e63..ce5916d 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
@@ -26,7 +26,7 @@ public class Embed extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param height The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -38,7 +38,7 @@ public class Embed extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param src The new value for this attribute.
 	 * 	Typically a {@link URL} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -50,7 +50,7 @@ public class Embed extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-embed-type">type</a> attribute.
 	 * Type of embedded resource.
-	 * @param type - The new value for this attribute.
+	 * @param type The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Embed type(String type) {
@@ -61,7 +61,7 @@ public class Embed extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param width The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -70,6 +70,7 @@ public class Embed extends HtmlElementEmpty {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/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 17dca9e..819a736 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
@@ -24,7 +24,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.
+	 * @param disabled The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -36,7 +36,7 @@ public class Fieldset extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fae-form">form</a> attribute.
 	 * Associates the control with a form element.
-	 * @param form - The new value for this attribute.
+	 * @param form The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Fieldset form(String form) {
@@ -47,7 +47,7 @@ public class Fieldset extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-name">name</a> attribute.
 	 * Name of form control to use for form submission and in the form.elements API.
-	 * @param name - The new value for this attribute.
+	 * @param name The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Fieldset name(String name) {
@@ -55,6 +55,7 @@ public class Fieldset extends HtmlElementMixed {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/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 f8a68b1..49ca7a2 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
@@ -24,7 +24,7 @@ public class Form extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-form-accept-charset">accept-charset</a> attribute.
 	 * Character encodings to use for form submission.
-	 * @param acceptcharset - The new value for this attribute.
+	 * @param acceptcharset The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Form acceptcharset(String acceptcharset) {
@@ -35,7 +35,7 @@ public class Form extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-action">action</a> attribute.
 	 * URL to use for form submission.
-	 * @param action - The new value for this attribute.
+	 * @param action The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Form action(String action) {
@@ -46,7 +46,7 @@ public class Form extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-form-autocomplete">autocomplete</a> attribute.
 	 * Default setting for autofill feature for controls in the form.
-	 * @param autocomplete - The new value for this attribute.
+	 * @param autocomplete The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Form autocomplete(String autocomplete) {
@@ -57,7 +57,7 @@ public class Form extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-enctype">enctype</a> attribute.
 	 * Form data set encoding type to use for form submission.
-	 * @param enctype - The new value for this attribute.
+	 * @param enctype The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Form enctype(String enctype) {
@@ -68,7 +68,7 @@ public class Form extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-method">method</a> attribute.
 	 * HTTP method to use for form submission.
-	 * @param method - The new value for this attribute.
+	 * @param method The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Form method(String method) {
@@ -79,7 +79,7 @@ public class Form extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-form-name">name</a> attribute.
 	 * Name of form to use in the document.forms API.
-	 * @param name - The new value for this attribute.
+	 * @param name The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Form name(String name) {
@@ -90,7 +90,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.
+	 * @param novalidate The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -102,7 +102,7 @@ public class Form extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-target">target</a> attribute.
 	 * Browsing context for form submission.
-	 * @param target - The new value for this attribute.
+	 * @param target The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Form target(String target) {
@@ -110,6 +110,7 @@ public class Form extends HtmlElementMixed {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/juneau-core/src/main/java/org/apache/juneau/dto/html5/Html.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Html.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Html.java
index 2af5f36..6e7bc19 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Html.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Html.java
@@ -24,7 +24,7 @@ public class Html extends HtmlElementContainer {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/semantics.html#attr-html-manifest">manifest</a> attribute.
 	 * Application cache manifest.
-	 * @param manifest - The new value for this attribute.
+	 * @param manifest The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Html manifest(String manifest) {
@@ -32,6 +32,7 @@ public class Html extends HtmlElementContainer {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/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 7be2c18..d105866 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
@@ -87,7 +87,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/editing.html#the-accesskey-attribute">accesskey</a> attribute.
-	 * @param accesskey - The new value for this attribute.
+	 * @param accesskey The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement accesskey(String accesskey) {
@@ -97,7 +97,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/dom.html#classes">class</a> attribute.
-	 * @param _class - The new value for this attribute.
+	 * @param _class The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public HtmlElement _class(String _class) {
@@ -107,7 +107,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.
+	 * @param contenteditable The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -118,7 +118,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/dom.html#the-dir-attribute">dir</a> attribute.
-	 * @param dir - The new value for this attribute.
+	 * @param dir The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public HtmlElement dir(String dir) {
@@ -128,7 +128,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.
+	 * @param hidden The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -139,7 +139,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/dom.html#the-id-attribute">id</a> attribute.
-	 * @param id - The new value for this attribute.
+	 * @param id The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public HtmlElement id(String id) {
@@ -149,7 +149,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/dom.html#attr-lang">lang</a> attribute.
-	 * @param lang - The new value for this attribute.
+	 * @param lang The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement lang(String lang) {
@@ -159,7 +159,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onabort">onabort</a> attribute.
-	 * @param onabort - The new value for this attribute.
+	 * @param onabort The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onabort(String onabort) {
@@ -169,7 +169,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onblur">onblur</a> attribute.
-	 * @param onblur - The new value for this attribute.
+	 * @param onblur The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onblur(String onblur) {
@@ -179,7 +179,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-oncancel">oncancel</a> attribute.
-	 * @param oncancel - The new value for this attribute.
+	 * @param oncancel The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement oncancel(String oncancel) {
@@ -189,7 +189,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-oncanplay">oncanplay</a> attribute.
-	 * @param oncanplay - The new value for this attribute.
+	 * @param oncanplay The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement oncanplay(String oncanplay) {
@@ -199,7 +199,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-oncanplaythrough">oncanplaythrough</a> attribute.
-	 * @param oncanplaythrough - The new value for this attribute.
+	 * @param oncanplaythrough The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement oncanplaythrough(String oncanplaythrough) {
@@ -209,7 +209,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onchange">onchange</a> attribute.
-	 * @param onchange - The new value for this attribute.
+	 * @param onchange The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onchange(String onchange) {
@@ -219,7 +219,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onclick">onclick</a> attribute.
-	 * @param onclick - The new value for this attribute.
+	 * @param onclick The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onclick(String onclick) {
@@ -229,7 +229,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-oncuechange">oncuechange</a> attribute.
-	 * @param oncuechange - The new value for this attribute.
+	 * @param oncuechange The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement oncuechange(String oncuechange) {
@@ -239,7 +239,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-ondblclick">ondblclick</a> attribute.
-	 * @param ondblclick - The new value for this attribute.
+	 * @param ondblclick The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement ondblclick(String ondblclick) {
@@ -249,7 +249,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-ondurationchange">ondurationchange</a> attribute.
-	 * @param ondurationchange - The new value for this attribute.
+	 * @param ondurationchange The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement ondurationchange(String ondurationchange) {
@@ -259,7 +259,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onemptied">onemptied</a> attribute.
-	 * @param onemptied - The new value for this attribute.
+	 * @param onemptied The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onemptied(String onemptied) {
@@ -269,7 +269,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onended">onended</a> attribute.
-	 * @param onended - The new value for this attribute.
+	 * @param onended The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onended(String onended) {
@@ -279,7 +279,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onerror">onerror</a> attribute.
-	 * @param onerror - The new value for this attribute.
+	 * @param onerror The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onerror(String onerror) {
@@ -289,7 +289,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onfocus">onfocus</a> attribute.
-	 * @param onfocus - The new value for this attribute.
+	 * @param onfocus The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onfocus(String onfocus) {
@@ -299,7 +299,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-oninput">oninput</a> attribute.
-	 * @param oninput - The new value for this attribute.
+	 * @param oninput The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement oninput(String oninput) {
@@ -309,7 +309,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-oninvalid">oninvalid</a> attribute.
-	 * @param oninvalid - The new value for this attribute.
+	 * @param oninvalid The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement oninvalid(String oninvalid) {
@@ -319,7 +319,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onkeydown">onkeydown</a> attribute.
-	 * @param onkeydown - The new value for this attribute.
+	 * @param onkeydown The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onkeydown(String onkeydown) {
@@ -329,7 +329,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onkeypress">onkeypress</a> attribute.
-	 * @param onkeypress - The new value for this attribute.
+	 * @param onkeypress The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onkeypress(String onkeypress) {
@@ -339,7 +339,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onkeyup">onkeyup</a> attribute.
-	 * @param onkeyup - The new value for this attribute.
+	 * @param onkeyup The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onkeyup(String onkeyup) {
@@ -349,7 +349,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onload">onload</a> attribute.
-	 * @param onload - The new value for this attribute.
+	 * @param onload The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onload(String onload) {
@@ -359,7 +359,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onloadeddata">onloadeddata</a> attribute.
-	 * @param onloadeddata - The new value for this attribute.
+	 * @param onloadeddata The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onloadeddata(String onloadeddata) {
@@ -369,7 +369,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onloadedmetadata">onloadedmetadata</a> attribute.
-	 * @param onloadedmetadata - The new value for this attribute.
+	 * @param onloadedmetadata The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onloadedmetadata(String onloadedmetadata) {
@@ -379,7 +379,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onloadstart">onloadstart</a> attribute.
-	 * @param onloadstart - The new value for this attribute.
+	 * @param onloadstart The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onloadstart(String onloadstart) {
@@ -389,7 +389,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onmousedown">onmousedown</a> attribute.
-	 * @param onmousedown - The new value for this attribute.
+	 * @param onmousedown The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onmousedown(String onmousedown) {
@@ -399,7 +399,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onmouseenter">onmouseenter</a> attribute.
-	 * @param onmouseenter - The new value for this attribute.
+	 * @param onmouseenter The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onmouseenter(String onmouseenter) {
@@ -409,7 +409,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onmouseleave">onmouseleave</a> attribute.
-	 * @param onmouseleave - The new value for this attribute.
+	 * @param onmouseleave The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onmouseleave(String onmouseleave) {
@@ -419,7 +419,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onmousemove">onmousemove</a> attribute.
-	 * @param onmousemove - The new value for this attribute.
+	 * @param onmousemove The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onmousemove(String onmousemove) {
@@ -429,7 +429,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onmouseout">onmouseout</a> attribute.
-	 * @param onmouseout - The new value for this attribute.
+	 * @param onmouseout The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onmouseout(String onmouseout) {
@@ -439,7 +439,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onmouseover">onmouseover</a> attribute.
-	 * @param onmouseover - The new value for this attribute.
+	 * @param onmouseover The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onmouseover(String onmouseover) {
@@ -449,7 +449,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onmouseup">onmouseup</a> attribute.
-	 * @param onmouseup - The new value for this attribute.
+	 * @param onmouseup The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onmouseup(String onmouseup) {
@@ -459,7 +459,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onmousewheel">onmousewheel</a> attribute.
-	 * @param onmousewheel - The new value for this attribute.
+	 * @param onmousewheel The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onmousewheel(String onmousewheel) {
@@ -469,7 +469,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onpause">onpause</a> attribute.
-	 * @param onpause - The new value for this attribute.
+	 * @param onpause The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onpause(String onpause) {
@@ -479,7 +479,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onplay">onplay</a> attribute.
-	 * @param onplay - The new value for this attribute.
+	 * @param onplay The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onplay(String onplay) {
@@ -489,7 +489,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onplaying">onplaying</a> attribute.
-	 * @param onplaying - The new value for this attribute.
+	 * @param onplaying The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onplaying(String onplaying) {
@@ -499,7 +499,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onprogress">onprogress</a> attribute.
-	 * @param onprogress - The new value for this attribute.
+	 * @param onprogress The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onprogress(String onprogress) {
@@ -509,7 +509,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onratechange">onratechange</a> attribute.
-	 * @param onratechange - The new value for this attribute.
+	 * @param onratechange The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onratechange(String onratechange) {
@@ -519,7 +519,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onreset">onreset</a> attribute.
-	 * @param onreset - The new value for this attribute.
+	 * @param onreset The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onreset(String onreset) {
@@ -529,7 +529,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onresize">onresize</a> attribute.
-	 * @param onresize - The new value for this attribute.
+	 * @param onresize The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onresize(String onresize) {
@@ -539,7 +539,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onscroll">onscroll</a> attribute.
-	 * @param onscroll - The new value for this attribute.
+	 * @param onscroll The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onscroll(String onscroll) {
@@ -549,7 +549,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onseeked">onseeked</a> attribute.
-	 * @param onseeked - The new value for this attribute.
+	 * @param onseeked The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onseeked(String onseeked) {
@@ -559,7 +559,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onseeking">onseeking</a> attribute.
-	 * @param onseeking - The new value for this attribute.
+	 * @param onseeking The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onseeking(String onseeking) {
@@ -569,7 +569,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onselect">onselect</a> attribute.
-	 * @param onselect - The new value for this attribute.
+	 * @param onselect The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onselect(String onselect) {
@@ -579,7 +579,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onshow">onshow</a> attribute.
-	 * @param onshow - The new value for this attribute.
+	 * @param onshow The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onshow(String onshow) {
@@ -589,7 +589,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onstalled">onstalled</a> attribute.
-	 * @param onstalled - The new value for this attribute.
+	 * @param onstalled The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onstalled(String onstalled) {
@@ -599,7 +599,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onsubmit">onsubmit</a> attribute.
-	 * @param onsubmit - The new value for this attribute.
+	 * @param onsubmit The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onsubmit(String onsubmit) {
@@ -609,7 +609,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onsuspend">onsuspend</a> attribute.
-	 * @param onsuspend - The new value for this attribute.
+	 * @param onsuspend The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onsuspend(String onsuspend) {
@@ -619,7 +619,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-ontimeupdate">ontimeupdate</a> attribute.
-	 * @param ontimeupdate - The new value for this attribute.
+	 * @param ontimeupdate The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement ontimeupdate(String ontimeupdate) {
@@ -629,7 +629,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-ontoggle">ontoggle</a> attribute.
-	 * @param ontoggle - The new value for this attribute.
+	 * @param ontoggle The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement ontoggle(String ontoggle) {
@@ -639,7 +639,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onvolumechange">onvolumechange</a> attribute.
-	 * @param onvolumechange - The new value for this attribute.
+	 * @param onvolumechange The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onvolumechange(String onvolumechange) {
@@ -649,7 +649,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onwaiting">onwaiting</a> attribute.
-	 * @param onwaiting - The new value for this attribute.
+	 * @param onwaiting The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final HtmlElement onwaiting(String onwaiting) {
@@ -659,7 +659,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.
+	 * @param spellcheck The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -670,7 +670,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/dom.html#the-style-attribute">style</a> attribute.
-	 * @param style - The new value for this attribute.
+	 * @param style The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public HtmlElement style(String style) {
@@ -680,7 +680,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.
+	 * @param tabindex The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -691,7 +691,7 @@ public abstract class HtmlElement {
 
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/dom.html#attr-title">title</a> attribute.
-	 * @param title - The new value for this attribute.
+	 * @param title The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public HtmlElement title(String title) {
@@ -701,7 +701,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.
+	 * @param translate The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementText.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementText.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementText.java
index 1be7d22..5c66b7e 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementText.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementText.java
@@ -46,7 +46,7 @@ public class HtmlElementText extends HtmlElement {
 	/**
 	 * Sets the text node on this element.
 	 *
-	 * @param text - The text node to add to this element.
+	 * @param text The text node to add to this element.
 	 * @return This object (for method chaining).
 	 */
 	public HtmlElement text(Object text) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/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 90db050..ee4bf52 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
@@ -26,7 +26,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.
+	 * @param height The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -38,7 +38,7 @@ public class Iframe extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-iframe-name">name</a> attribute.
 	 * Name of nested browsing context.
-	 * @param name - The new value for this attribute.
+	 * @param name The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Iframe name(String name) {
@@ -49,7 +49,7 @@ public class Iframe extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-iframe-sandbox">sandbox</a> attribute.
 	 * Security rules for nested content.
-	 * @param sandbox - The new value for this attribute.
+	 * @param sandbox The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Iframe sandbox(String sandbox) {
@@ -60,7 +60,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.
+	 * @param src The new value for this attribute.
 	 * 	Typically a {@link URL} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -72,7 +72,7 @@ public class Iframe extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-iframe-srcdoc">srcdoc</a> attribute.
 	 * A document to render in the iframe.
-	 * @param srcdoc - The new value for this attribute.
+	 * @param srcdoc The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Iframe srcdoc(String srcdoc) {
@@ -83,7 +83,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.
+	 * @param width The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -92,6 +92,7 @@ public class Iframe extends HtmlElementMixed {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/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 8fcca78..8b50045 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
@@ -25,7 +25,7 @@ public class Img extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-img-alt">alt</a> attribute.
 	 * Replacement text for use when images are not available.
-	 * @param alt - The new value for this attribute.
+	 * @param alt The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Img alt(String alt) {
@@ -36,7 +36,7 @@ public class Img extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-img-crossorigin">crossorigin</a> attribute.
 	 * How the element handles crossorigin requests.
-	 * @param crossorigin - The new value for this attribute.
+	 * @param crossorigin The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Img crossorigin(String crossorigin) {
@@ -47,7 +47,7 @@ public class Img extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param height The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -59,7 +59,7 @@ public class Img extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param ismap The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -71,7 +71,7 @@ public class Img extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param src The new value for this attribute.
 	 * 	Typically a {@link URL} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -83,7 +83,7 @@ public class Img extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-hyperlink-usemap">usemap</a> attribute.
 	 * Name of image map to use.
-	 * @param usemap - The new value for this attribute.
+	 * @param usemap The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Img usemap(String usemap) {
@@ -94,7 +94,7 @@ public class Img extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param width The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -103,6 +103,7 @@ public class Img extends HtmlElementEmpty {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/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 b509073..fbbfd9b 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
@@ -26,7 +26,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-accept">accept</a> attribute.
 	 * Hint for expected file type in file upload controls.
-	 * @param accept - The new value for this attribute.
+	 * @param accept The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input accept(String accept) {
@@ -37,7 +37,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-alt">alt</a> attribute.
 	 * Replacement text for use when images are not available.
-	 * @param alt - The new value for this attribute.
+	 * @param alt The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input alt(String alt) {
@@ -48,7 +48,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-autocomplete">autocomplete</a> attribute.
 	 * Hint for form autofill feature.
-	 * @param autocomplete - The new value for this attribute.
+	 * @param autocomplete The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input autocomplete(String autocomplete) {
@@ -59,7 +59,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param autofocus The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input autofocus(String autofocus) {
@@ -70,7 +70,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param checked The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -82,7 +82,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-dirname">dirname</a> attribute.
 	 * Name of form field to use for sending the element's directionality in form submission.
-	 * @param dirname - The new value for this attribute.
+	 * @param dirname The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input dirname(String dirname) {
@@ -93,7 +93,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param disabled The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -105,7 +105,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fae-form">form</a> attribute.
 	 * Associates the control with a form element.
-	 * @param form - The new value for this attribute.
+	 * @param form The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input form(String form) {
@@ -116,7 +116,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formaction">formaction</a> attribute.
 	 * URL to use for form submission.
-	 * @param formaction - The new value for this attribute.
+	 * @param formaction The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input formaction(String formaction) {
@@ -127,7 +127,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formenctype">formenctype</a> attribute.
 	 * Form data set encoding type to use for form submission.
-	 * @param formenctype - The new value for this attribute.
+	 * @param formenctype The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input formenctype(String formenctype) {
@@ -138,7 +138,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formmethod">formmethod</a> attribute.
 	 * HTTP method to use for form submission.
-	 * @param formmethod - The new value for this attribute.
+	 * @param formmethod The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input formmethod(String formmethod) {
@@ -149,7 +149,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formnovalidate">formnovalidate</a> attribute.
 	 * Bypass form control validation for form submission.
-	 * @param formnovalidate - The new value for this attribute.
+	 * @param formnovalidate The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input formnovalidate(String formnovalidate) {
@@ -160,7 +160,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formtarget">formtarget</a> attribute.
 	 * Browsing context for form submission.
-	 * @param formtarget - The new value for this attribute.
+	 * @param formtarget The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input formtarget(String formtarget) {
@@ -171,7 +171,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param height The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -183,7 +183,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-input-inputmode">inputmode</a> attribute.
 	 * Hint for selecting an input modality.
-	 * @param inputmode - The new value for this attribute.
+	 * @param inputmode The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input inputmode(String inputmode) {
@@ -194,7 +194,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-list">list</a> attribute.
 	 * List of autocomplete options.
-	 * @param list - The new value for this attribute.
+	 * @param list The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input list(String list) {
@@ -205,7 +205,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param max The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -217,7 +217,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param maxlength The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -229,7 +229,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param min The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -241,7 +241,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param minlength The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -253,7 +253,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param multiple The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -265,7 +265,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-name">name</a> attribute.
 	 * Name of form control to use for form submission and in the form.elements API.
-	 * @param name - The new value for this attribute.
+	 * @param name The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input name(String name) {
@@ -276,7 +276,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-pattern">pattern</a> attribute.
 	 * Pattern to be matched by the form control's value.
-	 * @param pattern - The new value for this attribute.
+	 * @param pattern The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input pattern(String pattern) {
@@ -287,7 +287,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-placeholder">placeholder</a> attribute.
 	 * User-visible label to be placed within the form control.
-	 * @param placeholder - The new value for this attribute.
+	 * @param placeholder The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input placeholder(String placeholder) {
@@ -298,7 +298,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param readonly The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -310,7 +310,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param required The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -322,7 +322,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param size The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -334,7 +334,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param src The new value for this attribute.
 	 * 	Typically a {@link URL} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -346,7 +346,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-step">step</a> attribute.
 	 * Granularity to be matched by the form control's value.
-	 * @param step - The new value for this attribute.
+	 * @param step The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input step(String step) {
@@ -357,7 +357,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-type">type</a> attribute.
 	 * Type of form control.
-	 * @param type - The new value for this attribute.
+	 * @param type The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Input type(String type) {
@@ -368,7 +368,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param value The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -380,7 +380,7 @@ public class Input extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param width The new value for this attribute.
 	 * 	Typically a {@link Number} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -389,6 +389,7 @@ public class Input extends HtmlElementEmpty {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/juneau-core/src/main/java/org/apache/juneau/dto/html5/Ins.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Ins.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Ins.java
index 8ed4f2d..0939c50 100644
--- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Ins.java
+++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Ins.java
@@ -24,7 +24,7 @@ public class Ins extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/edits.html#attr-mod-cite">cite</a> attribute.
 	 * Link to the source of the quotation or more information about the edit.
-	 * @param cite - The new value for this attribute.
+	 * @param cite The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Ins cite(String cite) {
@@ -35,7 +35,7 @@ public class Ins extends HtmlElementMixed {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/edits.html#attr-mod-datetime">datetime</a> attribute.
 	 * Date and (optionally) time of the change.
-	 * @param datetime - The new value for this attribute.
+	 * @param datetime The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Ins datetime(String datetime) {
@@ -43,6 +43,7 @@ public class Ins extends HtmlElementMixed {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/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 b21e5c0..1ad6617 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
@@ -24,7 +24,7 @@ public class Keygen extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param autofocus The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -36,7 +36,7 @@ public class Keygen extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-keygen-challenge">challenge</a> attribute.
 	 * String to package with the generated and signed public key.
-	 * @param challenge - The new value for this attribute.
+	 * @param challenge The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Keygen challenge(String challenge) {
@@ -47,7 +47,7 @@ public class Keygen extends HtmlElementEmpty {
 	/**
 	 * <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.
+	 * @param disabled The new value for this attribute.
 	 * 	Typically a {@link Boolean} or {@link String}.
 	 * @return This object (for method chaining).
 	 */
@@ -59,7 +59,7 @@ public class Keygen extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fae-form">form</a> attribute.
 	 * Associates the control with a form element.
-	 * @param form - The new value for this attribute.
+	 * @param form The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Keygen form(String form) {
@@ -70,7 +70,7 @@ public class Keygen extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-keygen-keytype">keytype</a> attribute.
 	 * The type of cryptographic key to generate.
-	 * @param keytype - The new value for this attribute.
+	 * @param keytype The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Keygen keytype(String keytype) {
@@ -81,7 +81,7 @@ public class Keygen extends HtmlElementEmpty {
 	/**
 	 * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-name">name</a> attribute.
 	 * Name of form control to use for form submission and in the form.elements API.
-	 * @param name - The new value for this attribute.
+	 * @param name The new value for this attribute.
 	 * @return This object (for method chaining).
 	 */
 	public final Keygen name(String name) {
@@ -89,6 +89,7 @@ public class Keygen extends HtmlElementEmpty {
 		return this;
 	}
 
+
 	//--------------------------------------------------------------------------------
 	// Overridden methods
 	//--------------------------------------------------------------------------------