http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/juneau-core/src/main/java/org/apache/juneau/dto/html5/Label.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Label.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Label.java index 794e2f5..d64564a 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Label.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Label.java @@ -24,7 +24,7 @@ public class Label extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-label-for">for</a> attribute. * Associate the label with form control. - * @param _for - The new value for this attribute. + * @param _for The new value for this attribute. * @return This object (for method chaining). */ public final Label _for(String _for) { @@ -35,7 +35,7 @@ public class Label 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 Label form(String form) { @@ -43,6 +43,7 @@ public class Label 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/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 f9a2f41..e25d90c 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 @@ -26,7 +26,7 @@ public class Link extends HtmlElementEmpty { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-link-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 Link crossorigin(String crossorigin) { @@ -37,7 +37,7 @@ public class Link extends HtmlElementEmpty { /** * <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. + * @param href The new value for this attribute. * Typically a {@link URL} or {@link String}. * @return This object (for method chaining). */ @@ -49,7 +49,7 @@ public class Link extends HtmlElementEmpty { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-link-hreflang">hreflang</a> attribute. * Language of the linked resource. - * @param hreflang - The new value for this attribute. + * @param hreflang The new value for this attribute. * @return This object (for method chaining). */ public final Link hreflang(String hreflang) { @@ -60,7 +60,7 @@ public class Link extends HtmlElementEmpty { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-link-media">media</a> attribute. * Applicable media. - * @param media - The new value for this attribute. + * @param media The new value for this attribute. * @return This object (for method chaining). */ public final Link media(String media) { @@ -71,7 +71,7 @@ public class Link extends HtmlElementEmpty { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-link-rel">rel</a> attribute. * Relationship between the document containing the hyperlink and the destination resource. - * @param rel - The new value for this attribute. + * @param rel The new value for this attribute. * @return This object (for method chaining). */ public final Link rel(String rel) { @@ -82,7 +82,7 @@ public class Link extends HtmlElementEmpty { /** * <a class="doclink" href="https://www.w3.org/TR/html5/links.html#attr-link-sizes">sizes</a> attribute. * Sizes of the icons (for rel="icon"). - * @param sizes - The new value for this attribute. + * @param sizes The new value for this attribute. * @return This object (for method chaining). */ public final Link sizes(String sizes) { @@ -93,7 +93,7 @@ public class Link extends HtmlElementEmpty { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-link-type">type</a> attribute. * Hint for the type of the referenced 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 Link type(String type) { @@ -101,6 +101,7 @@ public class Link 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/Map.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Map.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Map.java index 709526b..19d1d85 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Map.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Map.java @@ -24,7 +24,7 @@ public class Map extends HtmlElementContainer { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-map-name">name</a> attribute. * Name of image map to reference from the usemap attribute. - * @param name - The new value for this attribute. + * @param name The new value for this attribute. * @return This object (for method chaining). */ public final Map name(String name) { @@ -32,6 +32,7 @@ public class Map 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/Meta.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Meta.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Meta.java index 70ee31e..fd98fa7 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Meta.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Meta.java @@ -24,7 +24,7 @@ public class Meta extends HtmlElementEmpty { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-meta-charset">charset</a> attribute. * Character encoding declaration. - * @param charset - The new value for this attribute. + * @param charset The new value for this attribute. * @return This object (for method chaining). */ public final Meta charset(String charset) { @@ -35,7 +35,7 @@ public class Meta extends HtmlElementEmpty { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-meta-content">content</a> attribute. * Value of the element. - * @param content - The new value for this attribute. + * @param content The new value for this attribute. * @return This object (for method chaining). */ public final Meta content(String content) { @@ -46,7 +46,7 @@ public class Meta extends HtmlElementEmpty { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-meta-http-equiv">http-equiv</a> attribute. * Pragma directive. - * @param httpequiv - The new value for this attribute. + * @param httpequiv The new value for this attribute. * @return This object (for method chaining). */ public final Meta httpequiv(String httpequiv) { @@ -57,7 +57,7 @@ public class Meta extends HtmlElementEmpty { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-meta-name">name</a> attribute. * Metadata name. - * @param name - The new value for this attribute. + * @param name The new value for this attribute. * @return This object (for method chaining). */ public final Meta name(String name) { @@ -65,6 +65,7 @@ public class Meta 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/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 ce2a87d..f6009cb 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 @@ -24,7 +24,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. + * @param high 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 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. + * @param low The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -48,7 +48,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. + * @param max The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -60,7 +60,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. + * @param min The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -72,7 +72,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. + * @param optimum The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -84,7 +84,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. + * @param value The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -93,6 +93,7 @@ public class Meter 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/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 dc340ac..0fcf493 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 @@ -24,7 +24,7 @@ public class Object2 extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-object-data">data</a> attribute. * Address of the resource. - * @param data - The new value for this attribute. + * @param data The new value for this attribute. * @return This object (for method chaining). */ public final Object2 data(String data) { @@ -35,7 +35,7 @@ public class Object2 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 Object2 form(String form) { @@ -46,7 +46,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. + * @param height The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -58,7 +58,7 @@ public class Object2 extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-object-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 Object2 name(String name) { @@ -69,7 +69,7 @@ public class Object2 extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-object-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 Object2 type(String type) { @@ -80,7 +80,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. + * @param typemustmatch The new value for this attribute. * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ @@ -92,7 +92,7 @@ public class Object2 extends HtmlElementMixed { /** * <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 Object2 usemap(String usemap) { @@ -103,7 +103,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. + * @param width The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -112,6 +112,7 @@ public class Object2 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/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 f6847be..3a16500 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 @@ -24,7 +24,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. + * @param reversed 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 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. + * @param start The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -48,7 +48,7 @@ public class Ol extends HtmlElementContainer { /** * <a class="doclink" href="https://www.w3.org/TR/html5/grouping-content.html#attr-ol-type">type</a> attribute. * Kind of list marker.. - * @param type - The new value for this attribute. + * @param type The new value for this attribute. * @return This object (for method chaining). */ public final Ol type(String type) { @@ -56,6 +56,7 @@ public class Ol 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/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 9375c5f..61ec10f 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 @@ -24,7 +24,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. + * @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 Optgroup extends HtmlElementContainer { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-optgroup-label">label</a> attribute. * User-visible label. - * @param label - The new value for this attribute. + * @param label The new value for this attribute. * @return This object (for method chaining). */ public final Optgroup label(String label) { @@ -44,6 +44,7 @@ public class Optgroup 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/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 9636345..4e9f5a6 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 @@ -24,7 +24,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. + * @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 Option extends HtmlElementText { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-option-label">label</a> attribute. * User-visible label. - * @param label - The new value for this attribute. + * @param label The new value for this attribute. * @return This object (for method chaining). */ public final Option label(String label) { @@ -47,7 +47,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. + * @param selected 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 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. + * @param value The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -68,6 +68,7 @@ public class Option extends HtmlElementText { 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/Output.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Output.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Output.java index 3524ccc..a6d9379 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Output.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Output.java @@ -24,7 +24,7 @@ public class Output extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-output-for">for</a> attribute. * Specifies controls from which the output was calculated. - * @param _for - The new value for this attribute. + * @param _for The new value for this attribute. * @return This object (for method chaining). */ public final Output _for(String _for) { @@ -35,7 +35,7 @@ public class Output 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 Output form(String form) { @@ -46,7 +46,7 @@ public class Output 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 Output name(String name) { @@ -54,6 +54,7 @@ public class Output 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/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 dc36d56..04fe149 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 @@ -24,7 +24,7 @@ public class Param extends HtmlElementEmpty { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-param-name">name</a> attribute. * Name of parameter. - * @param name - The new value for this attribute. + * @param name The new value for this attribute. * @return This object (for method chaining). */ public final Param name(String name) { @@ -35,7 +35,7 @@ public class Param extends HtmlElementEmpty { /** * <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. + * @param value The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -44,6 +44,7 @@ public class Param 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/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 1324ef4..1e27351 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 @@ -24,7 +24,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. + * @param max 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 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. + * @param value 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 Progress 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/Q.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Q.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Q.java index ff75b74..e60a900 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Q.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Q.java @@ -24,7 +24,7 @@ public class Q extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/text-level-semantics.html#attr-q-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 Q cite(String cite) { @@ -32,6 +32,7 @@ public class Q 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/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 dfef75a..4992a5c 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 HtmlElementText { /** * <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. + * @param async The new value for this attribute. * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ @@ -39,7 +39,7 @@ public class Script extends HtmlElementText { /** * <a class="doclink" href="https://www.w3.org/TR/html5/scripting-1.html#attr-script-charset">charset</a> attribute. * Character encoding of the external script resource. - * @param charset - The new value for this attribute. + * @param charset The new value for this attribute. * @return This object (for method chaining). */ public final Script charset(String charset) { @@ -50,7 +50,7 @@ public class Script extends HtmlElementText { /** * <a class="doclink" href="https://www.w3.org/TR/html5/scripting-1.html#attr-script-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 Script crossorigin(String crossorigin) { @@ -61,7 +61,7 @@ public class Script extends HtmlElementText { /** * <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. + * @param defer 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 Script extends HtmlElementText { /** * <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. + * @param src The new value for this attribute. * Typically a {@link URL} or {@link String}. * @return This object (for method chaining). */ @@ -85,7 +85,7 @@ public class Script extends HtmlElementText { /** * <a class="doclink" href="https://www.w3.org/TR/html5/scripting-1.html#attr-script-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 Script type(String type) { @@ -93,6 +93,7 @@ public class Script extends HtmlElementText { 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/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 54d5372..43fd4d6 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 @@ -24,7 +24,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. + * @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 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. + * @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 Select extends HtmlElementContainer { /** * <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 Select form(String form) { @@ -59,7 +59,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. + * @param multiple 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 Select extends HtmlElementContainer { /** * <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 Select name(String name) { @@ -82,7 +82,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. + * @param required The new value for this attribute. * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ @@ -94,7 +94,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. + * @param size 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 Select 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/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 57cf235..59f9996 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 @@ -26,7 +26,7 @@ public class Source extends HtmlElementEmpty { /** * <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. + * @param src 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 Source extends HtmlElementEmpty { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-source-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 Source type(String type) { @@ -46,6 +46,7 @@ public class Source 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/Style.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Style.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Style.java index b4a8c77..174c1f5 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Style.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Style.java @@ -25,7 +25,7 @@ public class Style extends HtmlElementText { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-style-media">media</a> attribute. * Applicable media. - * @param media - The new value for this attribute. + * @param media The new value for this attribute. * @return This object (for method chaining). */ public final Style media(String media) { @@ -36,7 +36,7 @@ public class Style extends HtmlElementText { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-style-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 Style type(String type) { @@ -44,6 +44,7 @@ public class Style extends HtmlElementText { 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/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 2c1e80d..136a3cc 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 @@ -24,7 +24,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. + * @param border 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 Table 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/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 ef86e8f..3b88acb 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 @@ -24,7 +24,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. + * @param colspan 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 Td extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/tabular-data.html#attr-tdth-headers">headers</a> attribute. * The header cells for this cell. - * @param headers - The new value for this attribute. + * @param headers The new value for this attribute. * @return This object (for method chaining). */ public final Td headers(String headers) { @@ -47,7 +47,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. + * @param rowspan The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -56,6 +56,7 @@ public class Td 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/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 66a6441..498d0d6 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 @@ -24,7 +24,7 @@ public class Textarea extends HtmlElementText { /** * <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 Textarea autocomplete(String autocomplete) { @@ -35,7 +35,7 @@ public class Textarea extends HtmlElementText { /** * <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). */ @@ -47,7 +47,7 @@ public class Textarea extends HtmlElementText { /** * <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. + * @param cols 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 Textarea extends HtmlElementText { /** * <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 Textarea dirname(String dirname) { @@ -70,7 +70,7 @@ public class Textarea extends HtmlElementText { /** * <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). */ @@ -82,7 +82,7 @@ public class Textarea extends HtmlElementText { /** * <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 Textarea form(String form) { @@ -93,7 +93,7 @@ public class Textarea extends HtmlElementText { /** * <a class="doclink" href="-">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 Textarea inputmode(String inputmode) { @@ -104,7 +104,7 @@ public class Textarea extends HtmlElementText { /** * <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. + * @param maxlength The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -116,7 +116,7 @@ public class Textarea extends HtmlElementText { /** * <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. + * @param minlength The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -128,7 +128,7 @@ public class Textarea extends HtmlElementText { /** * <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 Textarea name(String name) { @@ -139,7 +139,7 @@ public class Textarea extends HtmlElementText { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-textarea-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 Textarea placeholder(String placeholder) { @@ -150,7 +150,7 @@ public class Textarea extends HtmlElementText { /** * <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. + * @param readonly The new value for this attribute. * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ @@ -162,7 +162,7 @@ public class Textarea extends HtmlElementText { /** * <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. + * @param required The new value for this attribute. * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ @@ -174,7 +174,7 @@ public class Textarea extends HtmlElementText { /** * <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. + * @param rows The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -186,7 +186,7 @@ public class Textarea extends HtmlElementText { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-textarea-wrap">wrap</a> attribute. * How the value of the form control is to be wrapped for form submission. - * @param wrap - The new value for this attribute. + * @param wrap The new value for this attribute. * @return This object (for method chaining). */ public final Textarea wrap(String wrap) { @@ -194,6 +194,7 @@ public class Textarea extends HtmlElementText { 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/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 fd7fd9e..26fb2c5 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 @@ -24,7 +24,7 @@ public class Th extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/tabular-data.html#attr-th-abbr">abbr</a> attribute. * Alternative label to use for the header cell when referencing the cell in other contexts. - * @param abbr - The new value for this attribute. + * @param abbr The new value for this attribute. * @return This object (for method chaining). */ public final Th abbr(String abbr) { @@ -35,7 +35,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. + * @param colspan The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -47,7 +47,7 @@ public class Th extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/tabular-data.html#attr-tdth-headers">headers</a> attribute. * The headers for this cell. - * @param headers - The new value for this attribute. + * @param headers The new value for this attribute. * @return This object (for method chaining). */ public final Th headers(String headers) { @@ -58,7 +58,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. + * @param rowspan The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -70,7 +70,7 @@ public class Th extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/tabular-data.html#attr-th-scope">scope</a> attribute. * Specifies which cells the header cell applies to. - * @param scope - The new value for this attribute. + * @param scope The new value for this attribute. * @return This object (for method chaining). */ public final Th scope(String scope) { @@ -81,7 +81,7 @@ public class Th extends HtmlElementMixed { /** * <a class="doclink" href="-">sorted</a> attribute. * Column sort direction and ordinality. - * @param sorted - The new value for this attribute. + * @param sorted The new value for this attribute. * @return This object (for method chaining). */ public final Th sorted(String sorted) { @@ -89,6 +89,7 @@ public class Th 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/Time.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Time.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Time.java index b3b49fa..ce67952 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Time.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Time.java @@ -24,7 +24,7 @@ public class Time extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/text-level-semantics.html#attr-time-datetime">datetime</a> attribute. * Machine-readable value. - * @param datetime - The new value for this attribute. + * @param datetime The new value for this attribute. * @return This object (for method chaining). */ public final Time datetime(String datetime) { @@ -32,6 +32,7 @@ public class Time 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/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 1717e88..e3f4728 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 @@ -26,7 +26,7 @@ public class Track extends HtmlElementEmpty { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-track-default">default</a> attribute. * Enable the track if no other text track is more suitable. - * @param _default - The new value for this attribute. + * @param _default The new value for this attribute. * @return This object (for method chaining). */ public final Track _default(String _default) { @@ -37,7 +37,7 @@ public class Track extends HtmlElementEmpty { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-track-kind">kind</a> attribute. * The type of text track. - * @param kind - The new value for this attribute. + * @param kind The new value for this attribute. * @return This object (for method chaining). */ public final Track kind(String kind) { @@ -48,7 +48,7 @@ public class Track extends HtmlElementEmpty { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-track-label">label</a> attribute. * User-visible label. - * @param label - The new value for this attribute. + * @param label The new value for this attribute. * @return This object (for method chaining). */ public final Track label(String label) { @@ -59,7 +59,7 @@ public class Track extends HtmlElementEmpty { /** * <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. + * @param src The new value for this attribute. * Typically a {@link URL} or {@link String}. * @return This object (for method chaining). */ @@ -71,7 +71,7 @@ public class Track extends HtmlElementEmpty { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-track-srclang">srclang</a> attribute. * Language of the text track. - * @param srclang - The new value for this attribute. + * @param srclang The new value for this attribute. * @return This object (for method chaining). */ public final Track srclang(String srclang) { @@ -79,6 +79,7 @@ public class Track 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/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 09ed270..0ff65bf 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 @@ -26,7 +26,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. + * @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 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. + * @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 Video 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 Video crossorigin(String crossorigin) { @@ -61,7 +61,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. + * @param height The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -73,7 +73,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. + * @param loop The new value for this attribute. * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ @@ -85,7 +85,7 @@ public class Video 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 Video mediagroup(String mediagroup) { @@ -96,7 +96,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. + * @param muted The new value for this attribute. * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ @@ -108,7 +108,7 @@ public class Video extends HtmlElementContainer { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-video-poster">poster</a> attribute. * Poster frame to show prior to video playback. - * @param poster - The new value for this attribute. + * @param poster The new value for this attribute. * @return This object (for method chaining). */ public final Video poster(String poster) { @@ -119,7 +119,7 @@ public class Video 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 Video preload(String preload) { @@ -130,7 +130,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. + * @param src The new value for this attribute. * Typically a {@link URL} or {@link String}. * @return This object (for method chaining). */ @@ -142,7 +142,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. + * @param width The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ @@ -151,6 +151,7 @@ public class Video 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/jsonschema/Schema.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/jsonschema/Schema.java b/juneau-core/src/main/java/org/apache/juneau/dto/jsonschema/Schema.java index 6418c62..f3a8eee 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/jsonschema/Schema.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/jsonschema/Schema.java @@ -80,6 +80,7 @@ public class Schema { */ public Schema() {} + //-------------------------------------------------------------------------------- // Bean properties //-------------------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/juneau-core/src/main/java/org/apache/juneau/encoders/EncoderGroup.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/encoders/EncoderGroup.java b/juneau-core/src/main/java/org/apache/juneau/encoders/EncoderGroup.java index a40a93a..5f148d2 100644 --- a/juneau-core/src/main/java/org/apache/juneau/encoders/EncoderGroup.java +++ b/juneau-core/src/main/java/org/apache/juneau/encoders/EncoderGroup.java @@ -64,7 +64,7 @@ public final class EncoderGroup extends Lockable { /** * Adds the specified encoder to the beginning of this group. * - * @param e - The encoder to add to this group. + * @param e The encoder to add to this group. * @return This object (for method chaining). */ public EncoderGroup append(Encoder e) { http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/juneau-core/src/main/java/org/apache/juneau/html/HtmlDocSerializer.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/HtmlDocSerializer.java b/juneau-core/src/main/java/org/apache/juneau/html/HtmlDocSerializer.java index ce1ec10..692357d 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/HtmlDocSerializer.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/HtmlDocSerializer.java @@ -56,6 +56,7 @@ public class HtmlDocSerializer extends HtmlStrippedDocSerializer { /** Default serializer, all default settings. */ public static final HtmlDocSerializer DEFAULT = new HtmlDocSerializer().lock(); + //-------------------------------------------------------------------------------- // Overridden methods //-------------------------------------------------------------------------------- @@ -164,53 +165,501 @@ public class HtmlDocSerializer extends HtmlStrippedDocSerializer { return false; } + //-------------------------------------------------------------------------------- - // Overridden methods + // Properties //-------------------------------------------------------------------------------- + @Override /* HtmlSerializer */ + public HtmlDocSerializer setUriAnchorText(String value) throws LockedException { + super.setUriAnchorText(value); + return this; + } + + @Override /* HtmlSerializer */ + public HtmlDocSerializer setDetectLinksInStrings(boolean value) throws LockedException { + super.setDetectLinksInStrings(value); + return this; + } + + @Override /* HtmlSerializer */ + public HtmlDocSerializer setLookForLabelParameters(boolean value) throws LockedException { + super.setLookForLabelParameters(value); + return this; + } + + @Override /* HtmlSerializer */ + public HtmlDocSerializer setLabelParameter(String value) throws LockedException { + super.setLabelParameter(value); + return this; + } + + @Override /* HtmlSerializer */ + public HtmlDocSerializer setAddKeyValueTableHeaders(boolean value) throws LockedException { + super.setAddKeyValueTableHeaders(value); + return this; + } + + @Override /* Serializer */ + public HtmlDocSerializer setMaxDepth(int value) throws LockedException { + super.setMaxDepth(value); + return this; + } + + @Override /* Serializer */ + public HtmlDocSerializer setInitialDepth(int value) throws LockedException { + super.setInitialDepth(value); + return this; + } + + @Override /* Serializer */ + public HtmlDocSerializer setDetectRecursions(boolean value) throws LockedException { + super.setDetectRecursions(value); + return this; + } + + @Override /* Serializer */ + public HtmlDocSerializer setIgnoreRecursions(boolean value) throws LockedException { + super.setIgnoreRecursions(value); + return this; + } + + @Override /* Serializer */ + public HtmlDocSerializer setUseIndentation(boolean value) throws LockedException { + super.setUseIndentation(value); + return this; + } + + @Override /* Serializer */ + public HtmlDocSerializer setAddBeanTypeProperties(boolean value) throws LockedException { + super.setAddBeanTypeProperties(value); + return this; + } + + @Override /* Serializer */ + public HtmlDocSerializer setQuoteChar(char value) throws LockedException { + super.setQuoteChar(value); + return this; + } + + @Override /* Serializer */ + public HtmlDocSerializer setTrimNullProperties(boolean value) throws LockedException { + super.setTrimNullProperties(value); + return this; + } + + @Override /* Serializer */ + public HtmlDocSerializer setTrimEmptyCollections(boolean value) throws LockedException { + super.setTrimEmptyCollections(value); + return this; + } + + @Override /* Serializer */ + public HtmlDocSerializer setTrimEmptyMaps(boolean value) throws LockedException { + super.setTrimEmptyMaps(value); + return this; + } + + @Override /* Serializer */ + public HtmlDocSerializer setTrimStrings(boolean value) throws LockedException { + super.setTrimStrings(value); + return this; + } + + @Override /* Serializer */ + public HtmlDocSerializer setRelativeUriBase(String value) throws LockedException { + super.setRelativeUriBase(value); + return this; + } + + @Override /* Serializer */ + public HtmlDocSerializer setAbsolutePathUriBase(String value) throws LockedException { + super.setAbsolutePathUriBase(value); + return this; + } + + @Override /* Serializer */ + public HtmlDocSerializer setSortCollections(boolean value) throws LockedException { + super.setSortCollections(value); + return this; + } + + @Override /* Serializer */ + public HtmlDocSerializer setSortMaps(boolean value) throws LockedException { + super.setSortMaps(value); + return this; + } + @Override /* CoreApi */ - public HtmlDocSerializer setProperty(String property, Object value) throws LockedException { - super.setProperty(property, value); + public HtmlDocSerializer setBeansRequireDefaultConstructor(boolean value) throws LockedException { + super.setBeansRequireDefaultConstructor(value); return this; } @Override /* CoreApi */ - public HtmlDocSerializer setProperties(ObjectMap properties) throws LockedException { - super.setProperties(properties); + public HtmlDocSerializer setBeansRequireSerializable(boolean value) throws LockedException { + super.setBeansRequireSerializable(value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setBeansRequireSettersForGetters(boolean value) throws LockedException { + super.setBeansRequireSettersForGetters(value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setBeansRequireSomeProperties(boolean value) throws LockedException { + super.setBeansRequireSomeProperties(value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setBeanMapPutReturnsOldValue(boolean value) throws LockedException { + super.setBeanMapPutReturnsOldValue(value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setBeanConstructorVisibility(Visibility value) throws LockedException { + super.setBeanConstructorVisibility(value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setBeanClassVisibility(Visibility value) throws LockedException { + super.setBeanClassVisibility(value); return this; } @Override /* CoreApi */ - public HtmlDocSerializer addNotBeanClasses(Class<?>...classes) throws LockedException { - super.addNotBeanClasses(classes); + public HtmlDocSerializer setBeanFieldVisibility(Visibility value) throws LockedException { + super.setBeanFieldVisibility(value); return this; } @Override /* CoreApi */ - public HtmlDocSerializer addBeanFilters(Class<?>...classes) throws LockedException { - super.addBeanFilters(classes); + public HtmlDocSerializer setMethodVisibility(Visibility value) throws LockedException { + super.setMethodVisibility(value); return this; } @Override /* CoreApi */ - public HtmlDocSerializer addPojoSwaps(Class<?>...classes) throws LockedException { - super.addPojoSwaps(classes); + public HtmlDocSerializer setUseJavaBeanIntrospector(boolean value) throws LockedException { + super.setUseJavaBeanIntrospector(value); return this; } @Override /* CoreApi */ - public HtmlDocSerializer addToDictionary(Class<?>...classes) throws LockedException { - super.addToDictionary(classes); + public HtmlDocSerializer setUseInterfaceProxies(boolean value) throws LockedException { + super.setUseInterfaceProxies(value); return this; } @Override /* CoreApi */ - public <T> HtmlDocSerializer addImplClass(Class<T> interfaceClass, Class<? extends T> implClass) throws LockedException { + public HtmlDocSerializer setIgnoreUnknownBeanProperties(boolean value) throws LockedException { + super.setIgnoreUnknownBeanProperties(value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setIgnoreUnknownNullBeanProperties(boolean value) throws LockedException { + super.setIgnoreUnknownNullBeanProperties(value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setIgnorePropertiesWithoutSetters(boolean value) throws LockedException { + super.setIgnorePropertiesWithoutSetters(value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setIgnoreInvocationExceptionsOnGetters(boolean value) throws LockedException { + super.setIgnoreInvocationExceptionsOnGetters(value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setIgnoreInvocationExceptionsOnSetters(boolean value) throws LockedException { + super.setIgnoreInvocationExceptionsOnSetters(value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setSortProperties(boolean value) throws LockedException { + super.setSortProperties(value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setNotBeanPackages(String...values) throws LockedException { + super.setNotBeanPackages(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setNotBeanPackages(Collection<String> values) throws LockedException { + super.setNotBeanPackages(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer addNotBeanPackages(String...values) throws LockedException { + super.addNotBeanPackages(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer addNotBeanPackages(Collection<String> values) throws LockedException { + super.addNotBeanPackages(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer removeNotBeanPackages(String...values) throws LockedException { + super.removeNotBeanPackages(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer removeNotBeanPackages(Collection<String> values) throws LockedException { + super.removeNotBeanPackages(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setNotBeanClasses(Class<?>...values) throws LockedException { + super.setNotBeanClasses(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setNotBeanClasses(Collection<Class<?>> values) throws LockedException { + super.setNotBeanClasses(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer addNotBeanClasses(Class<?>...values) throws LockedException { + super.addNotBeanClasses(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer addNotBeanClasses(Collection<Class<?>> values) throws LockedException { + super.addNotBeanClasses(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer removeNotBeanClasses(Class<?>...values) throws LockedException { + super.removeNotBeanClasses(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer removeNotBeanClasses(Collection<Class<?>> values) throws LockedException { + super.removeNotBeanClasses(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setBeanFilters(Class<?>...values) throws LockedException { + super.setBeanFilters(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setBeanFilters(Collection<Class<?>> values) throws LockedException { + super.setBeanFilters(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer addBeanFilters(Class<?>...values) throws LockedException { + super.addBeanFilters(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer addBeanFilters(Collection<Class<?>> values) throws LockedException { + super.addBeanFilters(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer removeBeanFilters(Class<?>...values) throws LockedException { + super.removeBeanFilters(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer removeBeanFilters(Collection<Class<?>> values) throws LockedException { + super.removeBeanFilters(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setPojoSwaps(Class<?>...values) throws LockedException { + super.setPojoSwaps(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setPojoSwaps(Collection<Class<?>> values) throws LockedException { + super.setPojoSwaps(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer addPojoSwaps(Class<?>...values) throws LockedException { + super.addPojoSwaps(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer addPojoSwaps(Collection<Class<?>> values) throws LockedException { + super.addPojoSwaps(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer removePojoSwaps(Class<?>...values) throws LockedException { + super.removePojoSwaps(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer removePojoSwaps(Collection<Class<?>> values) throws LockedException { + super.removePojoSwaps(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setImplClasses(Map<Class<?>,Class<?>> values) throws LockedException { + super.setImplClasses(values); + return this; + } + + @Override /* CoreApi */ + public <T> CoreApi addImplClass(Class<T> interfaceClass, Class<? extends T> implClass) throws LockedException { super.addImplClass(interfaceClass, implClass); return this; } @Override /* CoreApi */ + public HtmlDocSerializer setBeanDictionary(Class<?>...values) throws LockedException { + super.setBeanDictionary(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setBeanDictionary(Collection<Class<?>> values) throws LockedException { + super.setBeanDictionary(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer addToBeanDictionary(Class<?>...values) throws LockedException { + super.addToBeanDictionary(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer addToBeanDictionary(Collection<Class<?>> values) throws LockedException { + super.addToBeanDictionary(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer removeFromBeanDictionary(Class<?>...values) throws LockedException { + super.removeFromBeanDictionary(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer removeFromBeanDictionary(Collection<Class<?>> values) throws LockedException { + super.removeFromBeanDictionary(values); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setBeanTypePropertyName(String value) throws LockedException { + super.setBeanTypePropertyName(value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setDefaultParser(Class<?> value) throws LockedException { + super.setDefaultParser(value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setLocale(Locale value) throws LockedException { + super.setLocale(value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setTimeZone(TimeZone value) throws LockedException { + super.setTimeZone(value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setMediaType(MediaType value) throws LockedException { + super.setMediaType(value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setDebug(boolean value) throws LockedException { + super.setDebug(value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setProperty(String name, Object value) throws LockedException { + super.setProperty(name, value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer setProperties(ObjectMap properties) throws LockedException { + super.setProperties(properties); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer addToProperty(String name, Object value) throws LockedException { + super.addToProperty(name, value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer putToProperty(String name, Object key, Object value) throws LockedException { + super.putToProperty(name, key, value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer putToProperty(String name, Object value) throws LockedException { + super.putToProperty(name, value); + return this; + } + + @Override /* CoreApi */ + public HtmlDocSerializer removeFromProperty(String name, Object value) throws LockedException { + super.removeFromProperty(name, value); + return this; + } + + // Overridden methods + //-------------------------------------------------------------------------------- + + @Override /* CoreApi */ public HtmlDocSerializer setClassLoader(ClassLoader classLoader) throws LockedException { super.setClassLoader(classLoader); return this; http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/68dffad1/juneau-core/src/main/java/org/apache/juneau/html/HtmlDocSerializerContext.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/html/HtmlDocSerializerContext.java b/juneau-core/src/main/java/org/apache/juneau/html/HtmlDocSerializerContext.java index 64d8e3a..57f10db 100644 --- a/juneau-core/src/main/java/org/apache/juneau/html/HtmlDocSerializerContext.java +++ b/juneau-core/src/main/java/org/apache/juneau/html/HtmlDocSerializerContext.java @@ -40,53 +40,6 @@ import org.apache.juneau.*; * Several built-in runtime variable types are defined, and the API can be extended to include user-defined variables. * </p> * - * <h6 class='topic' id='ConfigProperties'>Configurable properties on the HTML document serializer</h6> - * <table class='styled' style='border-collapse: collapse;'> - * <tr><th>Setting name</th><th>Description</th><th>Data type</th><th>Default value</th><th>Session overridable</th></tr> - * <tr> - * <td>{@link #HTMLDOC_title}</td> - * <td>Page title.</td> - * <td><code>String</code></td> - * <td><jk>null</jk></td> - * <td><jk>true</jk></td> - * </tr> - * <tr> - * <td>{@link #HTMLDOC_description}</td> - * <td>Page description.</td> - * <td><code>String</code></td> - * <td><jk>null</jk></td> - * <td><jk>true</jk></td> - * </tr> - * <tr> - * <td>{@link #HTMLDOC_links}<br>{@link #HTMLDOC_links_put}</td> - * <td>Page links.</td> - * <td><code>Map<String,String></code></td> - * <td>empty map</td> - * <td><jk>true</jk></td> - * </tr> - * <tr> - * <td>{@link #HTMLDOC_cssUrl}</td> - * <td>Stylesheet URL.</td> - * <td><code>String</code></td> - * <td><js>"style.css"</js></td> - * <td><jk>true</jk></td> - * </tr> - * <tr> - * <td>{@link #HTMLDOC_cssImports}<br>{@link #HTMLDOC_cssImports_add}</td> - * <td>CSS imports.</td> - * <td><code>List<String></code></td> - * <td>empty list</td> - * <td><jk>true</jk></td> - * </tr> - * <tr> - * <td>{@link #HTMLDOC_nowrap}</td> - * <td>Prevent word wrap on page.</td> - * <td><code>Boolean</code></td> - * <td><jk>false</jk></td> - * <td><jk>true</jk></td> - * </tr> - * </table> - * * <h5 class='section'>Inherited configurable properties:</h5> * <ul class='javahierarchy'> * <li class='c'><a class="doclink" href="../BeanContext.html#ConfigProperties">BeanContext</a> - Properties associated with handling beans on serializers and parsers.
