http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Code.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Code.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Code.java index 3ccccd6..6b5bb01 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Code.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Code.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/text-level-semantics.html#the-code-element"><code></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/text-level-semantics.html#the-code-element"><code></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'>
http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 4858630..935bcc2 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 @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/tabular-data.html#the-col-element"><col></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/tabular-data.html#the-col-element"><col></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> @@ -35,10 +35,13 @@ public class Col extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/tabular-data.html#attr-col-span">span</a> attribute. + * + * <p> * Number of columns spanned by the element. * - * @param span The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * @param span + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public final Col span(Object span) { http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 ef4e220..d4ebd5f 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 @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/tabular-data.html#the-colgroup-element"><colgroup></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/tabular-data.html#the-colgroup-element"><colgroup></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> @@ -35,9 +35,13 @@ public class Colgroup extends HtmlElementContainer { /** * <a class="doclink" href="https://www.w3.org/TR/html5/tabular-data.html#attr-colgroup-span">span</a> attribute. + * + * <p> * Number of columns spanned by the element. - * @param span The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * + * @param span + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public final Colgroup span(Object span) { http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 ae513a7..078d3f3 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 @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/text-level-semantics.html#the-data-element"><data></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/text-level-semantics.html#the-data-element"><data></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> @@ -36,10 +36,13 @@ 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. + * + * <p> * Machine-readable value. * - * @param value The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * @param value + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public final Data value(Object value) { http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Datalist.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Datalist.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Datalist.java index 39e0a9e..d39ebde 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Datalist.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Datalist.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/forms.html#the-datalist-element"><datalist></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#the-datalist-element"><datalist></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dd.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dd.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dd.java index 8d77b46..e8f9b27 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dd.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dd.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/grouping-content.html#the-dd-element"><dd></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/grouping-content.html#the-dd-element"><dd></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 8bdfa2d..ac90b9e 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 @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/edits.html#the-del-element"><del></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/edits.html#the-del-element"><del></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> @@ -35,6 +35,8 @@ public class Del extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/edits.html#attr-mod-cite">cite</a> attribute. + * + * <p> * Link to the source of the quotation or more information about the edit. * * @param cite The new value for this attribute. @@ -47,6 +49,8 @@ public class Del extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/edits.html#attr-mod-datetime">datetime</a> attribute. + * + * <p> * Date and (optionally) time of the change. * * @param datetime The new value for this attribute. http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dfn.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dfn.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dfn.java index 3b1fa41..554bf44 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dfn.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dfn.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/text-level-semantics.html#the-dfn-element"><dfn></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/text-level-semantics.html#the-dfn-element"><dfn></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Div.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Div.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Div.java index a442af8..e8e7619 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Div.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Div.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/grouping-content.html#the-div-element"><div></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/grouping-content.html#the-div-element"><div></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dl.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dl.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dl.java index 690751e..f516c35 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dl.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dl.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/grouping-content.html#the-dl-element"><dl></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/grouping-content.html#the-dl-element"><dl></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dt.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dt.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dt.java index fa4950c..661de22 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dt.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Dt.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/grouping-content.html#the-dt-element"><dt></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/grouping-content.html#the-dt-element"><dt></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Em.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Em.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Em.java index fb19cc5..6f1fd66 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Em.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Em.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/text-level-semantics.html#the-em-element"><em></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/text-level-semantics.html#the-em-element"><em></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 241d322..8980a89 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 @@ -19,8 +19,8 @@ import org.apache.juneau.*; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/embedded-content-0.html#the-embed-element"><embed></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#the-embed-element"><embed></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> @@ -40,10 +40,13 @@ public class Embed extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-height">height</a> * attribute. + * + * <p> * Vertical dimension. * - * @param height The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * @param height + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public final Embed height(Object height) { @@ -53,15 +56,20 @@ public class Embed extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-embed-src">src</a> attribute. + * + * <p> * Address of the resource. + * * <p> * The value can be of any of the following types: {@link URI}, {@link URL}, {@link String}. * Strings must be valid URIs. + * * <p> * URIs defined by {@link UriResolver} can be used for values. * - * @param src The new value for this attribute. - * Typically a {@link URL} or {@link String}. + * @param src + * The new value for this attribute. + * Typically a {@link URL} or {@link String}. * @return This object (for method chaining). */ public final Embed src(Object src) { @@ -71,6 +79,8 @@ public class Embed extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-embed-type">type</a> attribute. + * + * <p> * Type of embedded resource. * * @param type The new value for this attribute. @@ -83,10 +93,13 @@ public class Embed extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-width">width</a> attribute. + * + * <p> * Horizontal dimension. * - * @param width The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * @param width + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public final Embed width(Object width) { http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 0e51dbd..461ec5d 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 @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/forms.html#the-fieldset-element"><fieldset></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#the-fieldset-element"><fieldset></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> @@ -35,10 +35,13 @@ public class Fieldset extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fieldset-disabled">disabled</a> attribute. + * + * <p> * Whether the form control is disabled. * - * @param disabled The new value for this attribute. - * Typically a {@link Boolean} or {@link String}. + * @param disabled + * The new value for this attribute. + * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ public final Fieldset disabled(Boolean disabled) { @@ -48,6 +51,8 @@ public class Fieldset extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fae-form">form</a> attribute. + * + * <p> * Associates the control with a form element. * * @param form The new value for this attribute. @@ -60,6 +65,8 @@ public class Fieldset extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-name">name</a> attribute. + * + * <p> * Name of form control to use for form submission and in the form.elements API. * * @param name The new value for this attribute. http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Figcaption.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Figcaption.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Figcaption.java index a076f7d..8bfad50 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Figcaption.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Figcaption.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/grouping-content.html#the-figcaption-element"><figcaption></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/grouping-content.html#the-figcaption-element"><figcaption></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Figure.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Figure.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Figure.java index ae287cd..2ef5f19 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Figure.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Figure.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/grouping-content.html#the-figure-element"><figure></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/grouping-content.html#the-figure-element"><figure></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Footer.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Footer.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Footer.java index c1bcb59..018ba97 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Footer.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Footer.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML - * <a class="doclink" href="https://www.w3.org/TR/html5/sections.html#the-footer-element"><footer></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/sections.html#the-footer-element"><footer></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 4a9ced2..ba992d7 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 @@ -19,8 +19,8 @@ import org.apache.juneau.*; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/forms.html#the-form-element"><form></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#the-form-element"><form></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> @@ -40,6 +40,8 @@ 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. + * + * <p> * Character encodings to use for form submission. * * @param acceptcharset The new value for this attribute. @@ -52,10 +54,14 @@ public class Form extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-action">action</a> attribute. + * + * <p> * URL to use for form submission. + * * <p> * The value can be of any of the following types: {@link URI}, {@link URL}, {@link String}. * Strings must be valid URIs. + * * <p> * URIs defined by {@link UriResolver} can be used for values. * @@ -70,7 +76,9 @@ 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. + * + * <p> + * Default setting for auto-fill feature for controls in the form. * * @param autocomplete The new value for this attribute. * @return This object (for method chaining). @@ -82,6 +90,8 @@ public class Form extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-enctype">enctype</a> attribute. + * + * <p> * Form data set encoding type to use for form submission. * * @param enctype The new value for this attribute. @@ -94,6 +104,8 @@ public class Form extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-method">method</a> attribute. + * + * <p> * HTTP method to use for form submission. * * @param method The new value for this attribute. @@ -106,6 +118,8 @@ public class Form extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-form-name">name</a> attribute. + * + * <p> * Name of form to use in the document.forms API. * * @param name The new value for this attribute. @@ -118,6 +132,8 @@ public class Form extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-novalidate">novalidate</a> attribute. + * + * <p> * Bypass form control validation for form submission. * * @param novalidate The new value for this attribute. @@ -131,6 +147,8 @@ public class Form extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-target">target</a> attribute. + * + * <p> * Browsing context for form submission. * * @param target The new value for this attribute. http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/H1.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/H1.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/H1.java index 03ce913..feefdf9 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/H1.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/H1.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements"><h1></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements"><h1></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/H2.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/H2.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/H2.java index 96bf9aa..1133301 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/H2.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/H2.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements"><h2></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements"><h2></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/H3.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/H3.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/H3.java index 356fe70..a83617b 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/H3.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/H3.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements"><h3></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements"><h3></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/H4.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/H4.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/H4.java index adcda96..5dc961b 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/H4.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/H4.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements"><h4></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements"><h4></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/H5.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/H5.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/H5.java index 6a25dad..ad62d13 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/H5.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/H5.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements"><h5></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements"><h5></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/H6.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/H6.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/H6.java index 3cb5e56..b4148a0 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/H6.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/H6.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements"><h6></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements"><h6></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Head.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Head.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Head.java index 2095029..2f4879f 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Head.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Head.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/document-metadata.html#the-head-element"><head></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#the-head-element"><head></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Header.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Header.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Header.java index b4e2806..ae47b12 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Header.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Header.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/sections.html#the-header-element"><header></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/sections.html#the-header-element"><header></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Hr.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Hr.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Hr.java index 4626424..aba0ab1 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Hr.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Hr.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/grouping-content.html#the-hr-element"><hr></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/grouping-content.html#the-hr-element"><hr></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 e96e4ab..9216e98 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 @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/semantics.html#the-html-element"><html></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/semantics.html#the-html-element"><html></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> @@ -35,6 +35,8 @@ public class Html extends HtmlElementContainer { /** * <a class="doclink" href="https://www.w3.org/TR/html5/semantics.html#attr-html-manifest">manifest</a> attribute. + * + * <p> * Application cache manifest. * * @param manifest The new value for this attribute. http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 14881cc..926e65e 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 @@ -28,6 +28,7 @@ import org.apache.juneau.xml.annotation.*; /** * Superclass for all HTML elements. + * * <p> * These are beans that when serialized using {@link HtmlSerializer} generate valid HTML5 elements. * @@ -94,12 +95,15 @@ public abstract class HtmlElement { /** * Adds an arbitrary URI attribute to this element. + * * <p> - * Same as {@link #attr(String, Object)}, except if the value is - * a string that appears to be a URI (e.g. <js>"servlet:/xxx"</js>). + * Same as {@link #attr(String, Object)}, except if the value is a string that appears to be a URI + * (e.g. <js>"servlet:/xxx"</js>). + * * <p> * The value can be of any of the following types: {@link URI}, {@link URL}, {@link String}. * Strings must be valid URIs. + * * <p> * URIs defined by {@link UriResolver} can be used for values. * @@ -127,8 +131,9 @@ public abstract class HtmlElement { /** * Returns the attribute with the specified name converted to the specified class type. * - * @param type The class type to convert this class to. - * See {@link ObjectUtils} for a list of supported conversion types. + * @param type + * The class type to convert this class to. + * See {@link ObjectUtils} for a list of supported conversion types. * @param key The attribute name. * @return The attribute value, or <jk>null</jk> if the named attribute does not exist. */ @@ -186,8 +191,9 @@ public abstract class HtmlElement { /** * <a class="doclink" href="https://www.w3.org/TR/html5/editing.html#the-hidden-attribute">hidden</a> attribute. * - * @param hidden The new value for this attribute. - * Typically a {@link Boolean} or {@link String}. + * @param hidden + * The new value for this attribute. + * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ public HtmlElement hidden(Object hidden) { @@ -262,8 +268,8 @@ public abstract class HtmlElement { } /** - * <a class="doclink" - * href="https://www.w3.org/TR/html5/webappapis.html#handler-oncanplaythrough">oncanplaythrough</a> attribute. + * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-oncanplaythrough">oncanplaythrough</a> + * attribute. * * @param oncanplaythrough The new value for this attribute. * @return This object (for method chaining). @@ -319,8 +325,8 @@ public abstract class HtmlElement { } /** - * <a class="doclink" - * href="https://www.w3.org/TR/html5/webappapis.html#handler-ondurationchange">ondurationchange</a> attribute. + * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-ondurationchange">ondurationchange</a> + * attribute. * * @param ondurationchange The new value for this attribute. * @return This object (for method chaining). @@ -453,8 +459,8 @@ public abstract class HtmlElement { } /** - * <a class="doclink" - * href="https://www.w3.org/TR/html5/webappapis.html#handler-onloadedmetadata">onloadedmetadata</a> attribute. + * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onloadedmetadata">onloadedmetadata</a> + * attribute. * * @param onloadedmetadata The new value for this attribute. * @return This object (for method chaining). @@ -490,6 +496,7 @@ public abstract class HtmlElement { /** * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-onmouseenter">onmouseenter</a> attribute. + * * @param onmouseenter The new value for this attribute. * @return This object (for method chaining). */ @@ -783,8 +790,9 @@ public abstract class HtmlElement { /** * <a class="doclink" href="https://www.w3.org/TR/html5/editing.html#attr-spellcheck">spellcheck</a> attribute. * - * @param spellcheck The new value for this attribute. - * Typically a {@link Boolean} or {@link String}. + * @param spellcheck + * The new value for this attribute. + * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ public HtmlElement spellcheck(Object spellcheck) { @@ -806,8 +814,9 @@ public abstract class HtmlElement { /** * <a class="doclink" href="https://www.w3.org/TR/html5/editing.html#attr-tabindex">tabindex</a> attribute. * - * @param tabindex The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * @param tabindex + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public HtmlElement tabindex(Object tabindex) { @@ -829,8 +838,9 @@ public abstract class HtmlElement { /** * <a class="doclink" href="https://www.w3.org/TR/html5/dom.html#attr-translate">translate</a> attribute. * - * @param translate The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * @param translate + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public HtmlElement translate(Object translate) { http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementContainer.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementContainer.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementContainer.java index 1628147..f35f237 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementContainer.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementContainer.java @@ -75,8 +75,10 @@ public class HtmlElementContainer extends HtmlElement { /** * Returns the child node at the specified address. + * * <p> * Indexes are zero-indexed. + * * <p> * For example, calling <code>getChild(1,2,3);</code> will return the 4th child of the 3rd child of the 2nd child. * http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementMixed.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementMixed.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementMixed.java index b2ff2da..5e06b73 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementMixed.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementMixed.java @@ -75,8 +75,10 @@ public class HtmlElementMixed extends HtmlElement { /** * Returns the child node at the specified address. + * * <p> * Indexes are zero-indexed. + * * <p> * For example, calling <code>getChild(1,2,3);</code> will return the 4th child of the 3rd child of the 2nd child. * @@ -119,8 +121,9 @@ public class HtmlElementMixed extends HtmlElement { /** * Adds one or more child elements to this element. * - * @param children The children to add as child elements. - * Can be a mixture of strings and {@link HtmlElement} objects. + * @param children + * The children to add as child elements. + * Can be a mixture of strings and {@link HtmlElement} objects. * @return This object (for method chaining). */ @SuppressWarnings("hiding") @@ -137,8 +140,9 @@ public class HtmlElementMixed extends HtmlElement { /** * Adds a child element to this element. * - * @param child The child to add as a child element. - * Can be a string or {@link HtmlElement}. + * @param child + * The child to add as a child element. + * Can be a string or {@link HtmlElement}. * @return This object (for method chaining). */ public HtmlElement child(Object child) { http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 80e47e5..cf10aec 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 @@ -47,7 +47,7 @@ public class HtmlElementText extends HtmlElement { } /** - * Sets the innter text of this element. + * Sets the inner text of this element. * * @param text The inner text of this element, or <jk>null</jk> if no text is set. * @return This object (for method chaining). http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementVoid.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementVoid.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementVoid.java index 365846d..25bf964 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementVoid.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/HtmlElementVoid.java @@ -18,6 +18,7 @@ import org.apache.juneau.xml.annotation.*; /** * A subclass of HTML elements that have no content or end tags. + * * <p> * See <a href="https://www.w3.org/TR/html51/syntax.html#void-elements">void elements</a> * http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/I.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/I.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/I.java index 58ed0ae..fa9399c 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/I.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/I.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/text-level-semantics.html#the-i-element"><i></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/text-level-semantics.html#the-i-element"><i></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 86af1dc..f0add3f 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 @@ -19,8 +19,8 @@ import org.apache.juneau.*; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/embedded-content-0.html#the-iframe-element"><iframe></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#the-iframe-element"><iframe></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> @@ -40,10 +40,13 @@ public class Iframe extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-height">height</a> * attribute. + * + * <p> * Vertical dimension. * - * @param height The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * @param height + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public final Iframe height(Object height) { @@ -53,6 +56,8 @@ public class Iframe extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-iframe-name">name</a> attribute. + * + * <p> * Name of nested browsing context. * * @param name The new value for this attribute. @@ -66,6 +71,8 @@ public class Iframe extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-iframe-sandbox">sandbox</a> * attribute. + * + * <p> * Security rules for nested content. * * @param sandbox The new value for this attribute. @@ -78,15 +85,20 @@ public class Iframe extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-iframe-src">src</a> attribute. + * + * <p> * Address of the resource. + * * <p> * The value can be of any of the following types: {@link URI}, {@link URL}, {@link String}. * Strings must be valid URIs. + * * <p> * URIs defined by {@link UriResolver} can be used for values. * - * @param src The new value for this attribute. - * Typically a {@link URL} or {@link String}. + * @param src + * The new value for this attribute. + * Typically a {@link URL} or {@link String}. * @return This object (for method chaining). */ public final Iframe src(Object src) { @@ -97,6 +109,8 @@ public class Iframe extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-iframe-srcdoc">srcdoc</a> * attribute. + * + * <p> * A document to render in the iframe. * * @param srcdoc The new value for this attribute. @@ -109,10 +123,13 @@ public class Iframe extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-width">width</a> attribute. + * + * <p> * Horizontal dimension. * - * @param width The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * @param width + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public final Iframe width(Object width) { http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 7701736..0a78701 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 @@ -19,8 +19,8 @@ import org.apache.juneau.*; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/embedded-content-0.html#the-img-element"><img></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#the-img-element"><img></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> @@ -39,6 +39,8 @@ public class Img extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-img-alt">alt</a> attribute. + * + * <p> * Replacement text for use when images are not available. * * @param alt The new value for this attribute. @@ -50,8 +52,10 @@ public class Img extends HtmlElementVoid { } /** - * <a class="doclink" - * href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-img-crossorigin">crossorigin</a> attribute. + * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-img-crossorigin">crossorigin</a> + * attribute. + * + * <p> * How the element handles cross-origin requests. * * @param crossorigin The new value for this attribute. @@ -65,10 +69,13 @@ public class Img extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-height">height</a> * attribute. + * + * <p> * Vertical dimension. * - * @param height The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * @param height + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public final Img height(Object height) { @@ -78,10 +85,13 @@ public class Img extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-img-ismap">ismap</a> attribute. + * + * <p> * Whether the image is a server-side image map. * - * @param ismap The new value for this attribute. - * Typically a {@link Boolean} or {@link String}. + * @param ismap + * The new value for this attribute. + * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ public final Img ismap(Object ismap) { @@ -91,15 +101,20 @@ public class Img extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-img-src">src</a> attribute. + * + * <p> * Address of the resource. + * * <p> * The value can be of any of the following types: {@link URI}, {@link URL}, {@link String}. * Strings must be valid URIs. + * * <p> * URIs defined by {@link UriResolver} can be used for values. * - * @param src The new value for this attribute. - * Typically a {@link URL} or {@link String}. + * @param src + * The new value for this attribute. + * Typically a {@link URL} or {@link String}. * @return This object (for method chaining). */ public final Img src(Object src) { @@ -110,6 +125,8 @@ public class Img extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-hyperlink-usemap">usemap</a> * attribute. + * + * <p> * Name of image map to use. * * @param usemap The new value for this attribute. @@ -122,10 +139,13 @@ public class Img extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-width">width</a> attribute. + * + * <p> * Horizontal dimension. * - * @param width The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * @param width + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public final Img width(Object width) { http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 7932b30..1cf0520 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 @@ -37,6 +37,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-accept">accept</a> attribute. + * + * <p> * Hint for expected file type in file upload controls. * * @param accept The new value for this attribute. @@ -49,6 +51,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-alt">alt</a> attribute. + * + * <p> * Replacement text for use when images are not available. * * @param alt The new value for this attribute. @@ -61,6 +65,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-autocomplete">autocomplete</a> attribute. + * + * <p> * Hint for form auto-fill feature. * * @param autocomplete The new value for this attribute. @@ -73,6 +79,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-autofocus">autofocus</a> attribute. + * + * <p> * Automatically focus the form control when the page is loaded. * * @param autofocus The new value for this attribute. @@ -85,10 +93,13 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-checked">checked</a> attribute. + * + * <p> * Whether the command or control is checked. * - * @param checked The new value for this attribute. - * Typically a {@link Boolean} or {@link String}. + * @param checked + * The new value for this attribute. + * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ public final Input checked(Object checked) { @@ -98,6 +109,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-dirname">dirname</a> attribute. + * + * <p> * Name of form field to use for sending the element's directionality in form submission. * * @param dirname The new value for this attribute. @@ -110,10 +123,13 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-disabled">disabled</a> attribute. + * + * <p> * Whether the form control is disabled. * - * @param disabled The new value for this attribute. - * Typically a {@link Boolean} or {@link String}. + * @param disabled + * The new value for this attribute. + * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ public final Input disabled(Object disabled) { @@ -123,6 +139,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fae-form">form</a> attribute. + * + * <p> * Associates the control with a form element. * * @param form The new value for this attribute. @@ -135,6 +153,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formaction">formaction</a> attribute. + * + * <p> * URL to use for form submission. * * @param formaction The new value for this attribute. @@ -147,6 +167,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formenctype">formenctype</a> attribute. + * + * <p> * Form data set encoding type to use for form submission. * * @param formenctype The new value for this attribute. @@ -159,6 +181,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formmethod">formmethod</a> attribute. + * + * <p> * HTTP method to use for form submission. * * @param formmethod The new value for this attribute. @@ -172,6 +196,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formnovalidate">formnovalidate</a> * attribute. + * + * <p> * Bypass form control validation for form submission. * * @param formnovalidate The new value for this attribute. @@ -184,6 +210,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formtarget">formtarget</a> attribute. + * + * <p> * Browsing context for form submission. * * @param formtarget The new value for this attribute. @@ -197,10 +225,13 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-height">height</a> * attribute. + * + * <p> * Vertical dimension. * - * @param height The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * @param height + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public final Input height(Object height) { @@ -223,6 +254,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-list">list</a> attribute. + * + * <p> * List of auto-complete options. * * @param list The new value for this attribute. @@ -235,10 +268,13 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-max">max</a> attribute. + * + * <p> * Maximum value. * - * @param max The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * @param max + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public final Input max(Object max) { @@ -261,10 +297,13 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-min">min</a> attribute. + * + * <p> * Minimum value. * - * @param min The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * @param min + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public final Input min(Object min) { @@ -274,10 +313,13 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-minlength">minlength</a> attribute. + * + * <p> * Minimum length of value. * - * @param minlength The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * @param minlength + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public final Input minlength(Object minlength) { @@ -287,10 +329,13 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-multiple">multiple</a> attribute. + * + * <p> * Whether to allow multiple values. * - * @param multiple The new value for this attribute. - * Typically a {@link Boolean} or {@link String}. + * @param multiple + * The new value for this attribute. + * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ public final Input multiple(Object multiple) { @@ -300,6 +345,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-name">name</a> attribute. + * + * <p> * Name of form control to use for form submission and in the form.elements API. * * @param name The new value for this attribute. @@ -312,6 +359,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-pattern">pattern</a> attribute. + * + * <p> * Pattern to be matched by the form control's value. * * @param pattern The new value for this attribute. @@ -324,6 +373,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-placeholder">placeholder</a> attribute. + * + * <p> * User-visible label to be placed within the form control. * * @param placeholder The new value for this attribute. @@ -336,10 +387,13 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-readonly">readonly</a> attribute. + * + * <p> * Whether to allow the value to be edited by the user. * - * @param readonly The new value for this attribute. - * Typically a {@link Boolean} or {@link String}. + * @param readonly + * The new value for this attribute. + * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ public final Input readonly(Object readonly) { @@ -350,6 +404,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-readonly">readonly</a> attribute. + * + * <p> * Whether to allow the value to be edited by the user. * * @param readonly If <jk>true</jk>, adds <code>readonly="readonly"</code>. @@ -363,10 +419,13 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-readonly">required</a> attribute. + * + * <p> * Whether the control is required for form submission. * - * @param required The new value for this attribute. - * Typically a {@link Boolean} or {@link String}. + * @param required + * The new value for this attribute. + * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ public final Input required(Object required) { @@ -376,10 +435,13 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-size">size</a> attribute. + * + * <p> * Size of the control. * - * @param size The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * @param size + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public final Input size(Object size) { @@ -389,10 +451,13 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-src">src</a> attribute. + * + * <p> * Address of the resource. * - * @param src The new value for this attribute. - * Typically a {@link URL} or {@link String}. + * @param src + * The new value for this attribute. + * Typically a {@link URL} or {@link String}. * @return This object (for method chaining). */ public final Input src(Object src) { @@ -402,6 +467,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-step">step</a> attribute. + * + * <p> * Granularity to be matched by the form control's value. * * @param step The new value for this attribute. @@ -414,6 +481,8 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-type">type</a> attribute. + * + * <p> * Type of form control. * * @param type The new value for this attribute. @@ -426,10 +495,13 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-input-value">value</a> attribute. + * + * <p> * Value of the form control. * - * @param value The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * @param value + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public final Input value(Object value) { @@ -439,10 +511,13 @@ public class Input extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-dim-width">width</a> attribute. + * + * <p> * Horizontal dimension. * - * @param width The new value for this attribute. - * Typically a {@link Number} or {@link String}. + * @param width + * The new value for this attribute. + * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). */ public final Input width(Object width) { http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 0a60453..820f303 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 @@ -35,6 +35,8 @@ public class Ins extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/edits.html#attr-mod-cite">cite</a> attribute. + * + * <p> * Link to the source of the quotation or more information about the edit. * * @param cite The new value for this attribute. @@ -47,6 +49,8 @@ public class Ins extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/edits.html#attr-mod-datetime">datetime</a> attribute. + * + * <p> * Date and (optionally) time of the change. * * @param datetime The new value for this attribute. http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Kbd.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Kbd.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Kbd.java index 454be16..1b4b857 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Kbd.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Kbd.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/text-level-semantics.html#the-kbd-element"><kbd></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/text-level-semantics.html#the-kbd-element"><kbd></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 4d57ec1..176cafe 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 @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/forms.html#the-keygen-element"><keygen></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#the-keygen-element"><keygen></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> @@ -35,10 +35,13 @@ public class Keygen extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-autofocus">autofocus</a> attribute. + * + * <p> * Automatically focus the form control when the page is loaded. * - * @param autofocus The new value for this attribute. - * Typically a {@link Boolean} or {@link String}. + * @param autofocus + * The new value for this attribute. + * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ public final Keygen autofocus(Object autofocus) { @@ -48,6 +51,8 @@ public class Keygen extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-keygen-challenge">challenge</a> attribute. + * + * <p> * String to package with the generated and signed public key. * * @param challenge The new value for this attribute. @@ -60,10 +65,13 @@ public class Keygen extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-disabled">disabled</a> attribute. + * + * <p> * Whether the form control is disabled. * - * @param disabled The new value for this attribute. - * Typically a {@link Boolean} or {@link String}. + * @param disabled + * The new value for this attribute. + * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). */ public final Keygen disabled(Object disabled) { @@ -73,6 +81,8 @@ public class Keygen extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fae-form">form</a> attribute. + * + * <p> * Associates the control with a form element. * * @param form The new value for this attribute. @@ -85,6 +95,8 @@ public class Keygen extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-keygen-keytype">keytype</a> attribute. + * + * <p> * The type of cryptographic key to generate. * * @param keytype The new value for this attribute. @@ -97,6 +109,8 @@ public class Keygen extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-name">name</a> attribute. + * + * <p> * Name of form control to use for form submission and in the form.elements API. * * @param name The new value for this attribute. http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 af3f55b..d9f366e 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 @@ -35,6 +35,8 @@ public class Label extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-label-for">for</a> attribute. + * + * <p> * Associate the label with form control. * * @param _for The new value for this attribute. @@ -47,6 +49,8 @@ public class Label extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fae-form">form</a> attribute. + * + * <p> * Associates the control with a form element. * * @param form The new value for this attribute. http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Legend.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Legend.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Legend.java index be89826..c2a06cf 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Legend.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Legend.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/forms.html#the-legend-element"><legend></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#the-legend-element"><legend></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Li.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Li.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Li.java index 524347f..8b7debc 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Li.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Li.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/grouping-content.html#the-li-element"><li></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/grouping-content.html#the-li-element"><li></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 d871bdb..48cc15c 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 @@ -19,8 +19,8 @@ import org.apache.juneau.*; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/document-metadata.html#the-link-element"><link></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#the-link-element"><link></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> @@ -38,8 +38,10 @@ import org.apache.juneau.annotation.*; public class Link extends HtmlElementVoid { /** - * <a class="doclink" - * href="https://www.w3.org/TR/html5/document-metadata.html#attr-link-crossorigin">crossorigin</a> attribute. + * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-link-crossorigin">crossorigin</a> + * attribute. + * + * <p> * How the element handles cross-origin requests. * * @param crossorigin The new value for this attribute. @@ -52,15 +54,20 @@ public class Link extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-link-href">href</a> attribute. + * + * <p> * Address of the hyperlink. + * * <p> * The value can be of any of the following types: {@link URI}, {@link URL}, {@link String}. * Strings must be valid URIs. + * * <p> * URIs defined by {@link UriResolver} can be used for values. * - * @param href The new value for this attribute. - * Typically a {@link URL} or {@link String}. + * @param href + * The new value for this attribute. + * Typically a {@link URL} or {@link String}. * @return This object (for method chaining). */ public final Link href(Object href) { @@ -71,6 +78,8 @@ public class Link extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-link-hreflang">hreflang</a> * attribute. + * + * <p> * Language of the linked resource. * * @param hreflang The new value for this attribute. @@ -83,6 +92,8 @@ public class Link extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-link-media">media</a> attribute. + * + * <p> * Applicable media. * * @param media The new value for this attribute. @@ -95,6 +106,8 @@ public class Link extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-link-rel">rel</a> attribute. + * + * <p> * Relationship between the document containing the hyperlink and the destination resource. * * @param rel The new value for this attribute. @@ -107,6 +120,8 @@ public class Link extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/links.html#attr-link-sizes">sizes</a> attribute. + * + * <p> * Sizes of the icons (for rel="icon"). * * @param sizes The new value for this attribute. @@ -119,6 +134,8 @@ public class Link extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-link-type">type</a> attribute. + * + * <p> * Hint for the type of the referenced resource. * * @param type The new value for this attribute. http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Main.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Main.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Main.java index 13888d8..f34d0a4 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Main.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Main.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/grouping-content.html#the-main-element"><main></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/grouping-content.html#the-main-element"><main></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 1000736..b8bcfba 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 @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/embedded-content-0.html#the-map-element"><map></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#the-map-element"><map></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> @@ -35,6 +35,8 @@ 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. + * + * <p> * Name of image map to reference from the usemap attribute. * * @param name The new value for this attribute. http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/juneau-core/src/main/java/org/apache/juneau/dto/html5/Mark.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Mark.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Mark.java index c9a3626..38d70c5 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Mark.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Mark.java @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/text-level-semantics.html#the-mark-element"><mark></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/text-level-semantics.html#the-mark-element"><mark></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/19c566dd/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 5be05b5..392aed6 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 @@ -15,8 +15,8 @@ package org.apache.juneau.dto.html5; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" - * href="https://www.w3.org/TR/html5/document-metadata.html#the-meta-element"><meta></a> element. + * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#the-meta-element"><meta></a> + * element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> @@ -36,6 +36,8 @@ public class Meta extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-meta-charset">charset</a> * attribute. + * + * <p> * Character encoding declaration. * * @param charset The new value for this attribute. @@ -49,6 +51,8 @@ public class Meta extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-meta-content">content</a> * attribute. + * + * <p> * Value of the element. * * @param content The new value for this attribute. @@ -62,6 +66,8 @@ public class Meta extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-meta-http-equiv">http-equiv</a> * attribute. + * + * <p> * Pragma directive. * * @param httpequiv The new value for this attribute. @@ -74,6 +80,8 @@ public class Meta extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-meta-name">name</a> attribute. + * + * <p> * Metadata name. * * @param name The new value for this attribute.
