http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/annotation/Consumes.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/annotation/Consumes.java b/juneau-core/src/main/java/org/apache/juneau/annotation/Consumes.java index 49d524d..32adb2d 100644 --- a/juneau-core/src/main/java/org/apache/juneau/annotation/Consumes.java +++ b/juneau-core/src/main/java/org/apache/juneau/annotation/Consumes.java @@ -26,10 +26,9 @@ import org.apache.juneau.parser.*; * <p> * Provides a way to define the contents of {@link Parser#getMediaTypes()} through an annotation. * <p> - * The {@link Parser#getMediaTypes()} default implementation gathers the media types by looking - * for this annotation. - * It should be noted that this annotation is optional and that the {@link Parser#getMediaTypes()} method can - * be overridden by subclasses to return the media types programmatically. + * The {@link Parser#getMediaTypes()} default implementation gathers the media types by looking for this annotation. + * It should be noted that this annotation is optional and that the {@link Parser#getMediaTypes()} method can be + * overridden by subclasses to return the media types programmatically. * * <h5 class='section'>Example:</h5> * <p> @@ -61,7 +60,8 @@ public @interface Consumes { * A comma-delimited list of media types that the parser can handle. * <p> * Can contain meta-characters per the <code>media-type</code> specification of - * <a class="doclink" href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1">RFC2616/14.1</a> + * <a class="doclink" href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1">RFC2616/14.1</a> + * * @return The media types that the parser can handle. */ String value() default "";
http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/annotation/NameProperty.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/annotation/NameProperty.java b/juneau-core/src/main/java/org/apache/juneau/annotation/NameProperty.java index 0ad6c17..dfd2ff8 100644 --- a/juneau-core/src/main/java/org/apache/juneau/annotation/NameProperty.java +++ b/juneau-core/src/main/java/org/apache/juneau/annotation/NameProperty.java @@ -27,8 +27,10 @@ import org.apache.juneau.ini.*; * {@link ConfigFileImpl} class, so parsers will call this method with the section name * using the {@link Section#setName(String)} method. * <p> - * A commonly-used case is when you're parsing a JSON map containing beans where one of the bean properties - * is the key used in the map. For example: + * A commonly-used case is when you're parsing a JSON map containing beans where one of the bean properties is the key + * used in the map. + * <br> + * For example: * <p class='bcode'> * { * id1: {name: <js>'John Smith'</js>, sex:<js>'M'</js>}, http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/annotation/ParentProperty.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/annotation/ParentProperty.java b/juneau-core/src/main/java/org/apache/juneau/annotation/ParentProperty.java index c26de34..cc903e7 100644 --- a/juneau-core/src/main/java/org/apache/juneau/annotation/ParentProperty.java +++ b/juneau-core/src/main/java/org/apache/juneau/annotation/ParentProperty.java @@ -23,9 +23,8 @@ import org.apache.juneau.ini.*; * Identifies a setter as a method for adding a parent reference to a child object. * <p> * Used by the parsers to add references to parent objects in child objects. - * For example, the {@link Section} class cannot exist outside the scope of a parent - * {@link ConfigFileImpl} class, so parsers will add a reference to the config file - * using the {@link Section#setParent(ConfigFileImpl)} method. + * For example, the {@link Section} class cannot exist outside the scope of a parent {@link ConfigFileImpl} class, so + * parsers will add a reference to the config file using the {@link Section#setParent(ConfigFileImpl)} method. * <p> * A commonly-used case is when you're parsing beans, and a child bean has a reference to a parent bean. * <p class='bcode'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/annotation/Pojo.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/annotation/Pojo.java b/juneau-core/src/main/java/org/apache/juneau/annotation/Pojo.java index 33ba1b9..6e41c31 100644 --- a/juneau-core/src/main/java/org/apache/juneau/annotation/Pojo.java +++ b/juneau-core/src/main/java/org/apache/juneau/annotation/Pojo.java @@ -40,7 +40,7 @@ public @interface Pojo { * * <h5 class='section'>Example:</h5> * <p> - * In this case, a swap is being applied to a bean that will force it to be serialized as a <code>String</code> + * In this case, a swap is being applied to a bean that will force it to be serialized as a <code>String</code>: * <p class='bcode'> * <jc>// Our bean class</jc> * <ja>@Pojo</ja>(swap=BSwap.<jk>class</jk>) http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/annotation/Produces.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/annotation/Produces.java b/juneau-core/src/main/java/org/apache/juneau/annotation/Produces.java index 4e76c64..2d13768 100644 --- a/juneau-core/src/main/java/org/apache/juneau/annotation/Produces.java +++ b/juneau-core/src/main/java/org/apache/juneau/annotation/Produces.java @@ -26,10 +26,10 @@ import org.apache.juneau.serializer.*; * <p> * Provides a way to define the contents of {@link Serializer#getMediaTypes()} through an annotation. * <p> - * The {@link Serializer#getMediaTypes()} default implementation gathers the media types by looking - * for this annotation. + * The {@link Serializer#getMediaTypes()} default implementation gathers the media types by looking for this annotation. + * <br> * It should be noted that this annotation is optional and that the {@link Serializer#getMediaTypes()} method can - * be overridden by subclasses to return the media types programmatically. + * be overridden by subclasses to return the media types programmatically. * * <h5 class='section'>Example:</h5> * <p> @@ -40,9 +40,10 @@ import org.apache.juneau.serializer.*; * </p> * <p> * The media types can also be <code>media-range</code> values per - * <a class="doclink" href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1">RFC2616/14.1</a>. - * When meta-characters are used, you should specify the {@link #contentType()} value to - * indicate the real media type value that can be set on the <code>Content-Type</code> response header. + * <a class="doclink" href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1">RFC2616/14.1</a>. + * <br> + * When meta-characters are used, you should specify the {@link #contentType()} value to indicate the real media type + * value that can be set on the <code>Content-Type</code> response header. * * <p class='bcode'> * <jc>// Produces any text</jc> @@ -64,7 +65,8 @@ public @interface Produces { * A comma-delimited list of the media types that the serializer can handle. * <p> * Can contain meta-characters per the <code>media-type</code> specification of - * <a class="doclink" href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1">RFC2616/14.1</a> + * <a class="doclink" href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1">RFC2616/14.1</a> + * * @return The media types that the parser can handle. */ String value() default ""; @@ -72,9 +74,9 @@ public @interface Produces { /** * The content type that this serializer produces. * <p> - * Can be used to override the <code>Content-Type</code> response type if the media types - * are <code>media-ranges</code> with meta-characters, or the <code>Content-Type</code> - * differs from the media type for some reason. + * Can be used to override the <code>Content-Type</code> response type if the media types are + * <code>media-ranges</code> with meta-characters, or the <code>Content-Type</code> differs from the media type for some reason. + * * @return The content type that this serializer produces, or blank if no overriding value exists. */ String contentType() default ""; http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/annotation/URI.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/annotation/URI.java b/juneau-core/src/main/java/org/apache/juneau/annotation/URI.java index e5685db..24dbec9 100644 --- a/juneau-core/src/main/java/org/apache/juneau/annotation/URI.java +++ b/juneau-core/src/main/java/org/apache/juneau/annotation/URI.java @@ -24,19 +24,19 @@ import org.apache.juneau.serializer.*; /** * Used to identify a class or bean property as a URI. * <p> - * By default, instances of {@link URL} and {@link URI} are considered URIs during serialization, and are - * handled differently depending on the serializer (e.g. <code>HtmlSerializer</code> creates a hyperlink, - * <code>RdfXmlSerializer</code> creates an <code>rdf:resource</code> object, etc...). + * By default, instances of {@link URL} and {@link URI} are considered URIs during serialization, and are handled + * differently depending on the serializer (e.g. <code>HtmlSerializer</code> creates a hyperlink, + * <code>RdfXmlSerializer</code> creates an <code>rdf:resource</code> object, etc...). * <p> * This annotation allows you to identify other classes that return URIs via <code>toString()</code> as URI objects. * <p> * URIs are automatically resolved to absolute or root-relative form based on the serializer - * {@link SerializerContext#SERIALIZER_uriResolution} and {@link SerializerContext#SERIALIZER_uriRelativity} - * configuration settings, and the URI context defined by the {@link UriContext} that's part of the serializer - * session. + * {@link SerializerContext#SERIALIZER_uriResolution} and {@link SerializerContext#SERIALIZER_uriRelativity} + * configuration settings, and the URI context defined by the {@link UriContext} that's part of the serializer + * session. * <p> * Refer to the {@link UriResolver} class for information about the types of URIs that can be resolved during - * serialization. + * serialization. * <p> * This annotation can be applied to classes, interfaces, or bean property methods for fields. * http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/csv/CsvParser.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/csv/CsvParser.java b/juneau-core/src/main/java/org/apache/juneau/csv/CsvParser.java index fd37dc5..c42c84c 100644 --- a/juneau-core/src/main/java/org/apache/juneau/csv/CsvParser.java +++ b/juneau-core/src/main/java/org/apache/juneau/csv/CsvParser.java @@ -28,6 +28,7 @@ public class CsvParser extends ReaderParser { /** * Constructor. + * * @param propertyStore The property store containing all the settings for this object. */ public CsvParser(PropertyStore propertyStore) { http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/csv/CsvParserBuilder.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/csv/CsvParserBuilder.java b/juneau-core/src/main/java/org/apache/juneau/csv/CsvParserBuilder.java index 6124708..52dbf1f 100644 --- a/juneau-core/src/main/java/org/apache/juneau/csv/CsvParserBuilder.java +++ b/juneau-core/src/main/java/org/apache/juneau/csv/CsvParserBuilder.java @@ -32,6 +32,7 @@ public class CsvParserBuilder extends ParserBuilder { /** * Constructor. + * * @param propertyStore The initial configuration settings for this builder. */ public CsvParserBuilder(PropertyStore propertyStore) { http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/csv/CsvParserContext.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/csv/CsvParserContext.java b/juneau-core/src/main/java/org/apache/juneau/csv/CsvParserContext.java index 020e6af..6b2e190 100644 --- a/juneau-core/src/main/java/org/apache/juneau/csv/CsvParserContext.java +++ b/juneau-core/src/main/java/org/apache/juneau/csv/CsvParserContext.java @@ -25,9 +25,11 @@ import org.apache.juneau.parser.*; * * <h6 class='topic'>Inherited configurable properties</h6> * <ul class='doctree'> - * <li class='jc'><a class="doclink" href="../BeanContext.html#ConfigProperties">BeanContext</a> - Properties associated with handling beans on serializers and parsers. + * <li class='jc'><a class="doclink" href="../BeanContext.html#ConfigProperties">BeanContext</a> - + * Properties associated with handling beans on serializers and parsers. * <ul> - * <li class='jc'><a class="doclink" href="../parser/ParserContext.html#ConfigProperties">ParserContext</a> - Configurable properties common to all parsers. + * <li class='jc'><a class="doclink" href="../parser/ParserContext.html#ConfigProperties">ParserContext</a> - + * Configurable properties common to all parsers. * </ul> * </ul> */ http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializer.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializer.java b/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializer.java index 3578b9f..b010719 100644 --- a/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializer.java +++ b/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializer.java @@ -32,6 +32,7 @@ public final class CsvSerializer extends WriterSerializer { /** * Constructor. + * * @param propertyStore The property store containing all the settings for this object. */ public CsvSerializer(PropertyStore propertyStore) { http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializerBuilder.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializerBuilder.java b/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializerBuilder.java index d35d7cd..eecee4d 100644 --- a/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializerBuilder.java +++ b/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializerBuilder.java @@ -32,6 +32,7 @@ public class CsvSerializerBuilder extends SerializerBuilder { /** * Constructor. + * * @param propertyStore The initial configuration settings for this builder. */ public CsvSerializerBuilder(PropertyStore propertyStore) { http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializerContext.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializerContext.java b/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializerContext.java index 278165b..1a77446 100644 --- a/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializerContext.java +++ b/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializerContext.java @@ -25,9 +25,11 @@ import org.apache.juneau.serializer.*; * * <h6 class='topic'>Inherited configurable properties</h6> * <ul class='doctree'> - * <li class='jc'><a class="doclink" href="../BeanContext.html#ConfigProperties">BeanContext</a> - Properties associated with handling beans on serializers and parsers. + * <li class='jc'><a class="doclink" href="../BeanContext.html#ConfigProperties">BeanContext</a> + * - Properties associated with handling beans on serializers and parsers. * <ul> - * <li class='jc'><a class="doclink" href="../serializer/SerializerContext.html#ConfigProperties">SerializerContext</a> - Configurable properties common to all serializers. + * <li class='jc'><a class="doclink" href="../serializer/SerializerContext.html#ConfigProperties">SerializerContext</a> + * - Configurable properties common to all serializers. * </ul> * </ul> */ http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializerSession.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializerSession.java b/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializerSession.java index 16a6c14..cde39cc 100644 --- a/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializerSession.java +++ b/juneau-core/src/main/java/org/apache/juneau/csv/CsvSerializerSession.java @@ -30,20 +30,21 @@ public final class CsvSerializerSession extends SerializerSession { * Create a new session using properties specified in the context. * * @param ctx The context creating this session object. - * The context contains all the configuration settings for this object. + * The context contains all the configuration settings for this object. * @param output The output object. * @param op The override properties. - * These override any context properties defined in the context. + * These override any context properties defined in the context. * @param javaMethod The java method that called this serializer, usually the method in a REST servlet. * @param locale The session locale. - * If <jk>null</jk>, then the locale defined on the context is used. + * If <jk>null</jk>, then the locale defined on the context is used. * @param timeZone The session timezone. - * If <jk>null</jk>, then the timezone defined on the context is used. + * If <jk>null</jk>, then the timezone defined on the context is used. * @param mediaType The session media type (e.g. <js>"application/json"</js>). * @param uriContext The URI context. - * Identifies the current request URI used for resolution of URIs to absolute or root-relative form. + * Identifies the current request URI used for resolution of URIs to absolute or root-relative form. */ - protected CsvSerializerSession(CsvSerializerContext ctx, ObjectMap op, Object output, Method javaMethod, Locale locale, TimeZone timeZone, MediaType mediaType, UriContext uriContext) { + protected CsvSerializerSession(CsvSerializerContext ctx, ObjectMap op, Object output, Method javaMethod, + Locale locale, TimeZone timeZone, MediaType mediaType, UriContext uriContext) { super(ctx, op, output, javaMethod, locale, timeZone, mediaType, uriContext); } } http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/Link.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/Link.java b/juneau-core/src/main/java/org/apache/juneau/dto/Link.java index 478a621..cd1ed55 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/Link.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/Link.java @@ -28,7 +28,8 @@ import org.apache.juneau.utils.*; * <p class='bcode'> * <xt><a</xt> <xa>href</xa>=<xs>'href'</xs><xt>></xt>name<xt></a></xt> * <p> - * When encountered by the {@link HtmlSerializer} class, this object gets converted to a hyperlink.<br> + * When encountered by the {@link HtmlSerializer} class, this object gets converted to a hyperlink. + * <br> * All other serializers simply convert it to a simple bean. */ @HtmlLink(nameProperty = "name", hrefProperty = "href") http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/atom/AtomBuilder.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/AtomBuilder.java b/juneau-core/src/main/java/org/apache/juneau/dto/atom/AtomBuilder.java index 512f64b..d03199b 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/AtomBuilder.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/AtomBuilder.java @@ -25,17 +25,21 @@ import org.apache.juneau.*; * <jk>import static</jk> org.apache.juneau.dto.atom.AtomBuilder.*; * * Feed feed = - * <jsm>feed</jsm>(<js>"tag:juneau.sample.com,2013:1"</js>, <js>"Juneau ATOM specification"</js>, <js>"2013-05-08T12:29:29Z"</js>) - * .subtitle(<jsm>text</jsm>(<js>"html"</js>).children(<js>"A <em>lot</em> of effort went into making this effortless"</js>)) + * <jsm>feed</jsm>(<js>"tag:juneau.sample.com,2013:1"</js>, <js>"Juneau ATOM specification"</js>, + * <js>"2013-05-08T12:29:29Z"</js>) + * .subtitle(<jsm>text</jsm>(<js>"html"</js>) + * .children(<js>"A <em>lot</em> of effort went into making this effortless"</js>)) * .links( - * <jsm>link</jsm>(<js>"alternate"</js>, <js>"text/html"</js>, <js>"http://www.sample.com/"</js>).hreflang(<js>"en"</js>), + * <jsm>link</jsm>(<js>"alternate"</js>, <js>"text/html"</js>, <js>"http://www.sample.com/"</js>) + * .hreflang(<js>"en"</js>), * <jsm>link</jsm>(<js>"self"</js>, <js>"application/atom+xml"</js>, <js>"http://www.sample.com/feed.atom"</js>) * ); * </p> * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.Atom'>Atom</a> * </ul> @@ -74,7 +78,8 @@ public class AtomBuilder { } /** - * Creates an {@link Entry} element with the specified {@link Entry#id(Id)}, {@link Entry#title(Text)}, and {@link Entry#updated(Calendar)} attributes. + * Creates an {@link Entry} element with the specified {@link Entry#id(Id)}, {@link Entry#title(Text)}, and + * {@link Entry#updated(Calendar)} attributes. * * @param id The {@link Entry#id(Id)} attribute. * @param title The {@link Entry#title(Text)} attribute. @@ -86,7 +91,8 @@ public class AtomBuilder { } /** - * Creates an {@link Entry} element with the specified {@link Entry#id(Id)}, {@link Entry#title(Text)}, and {@link Entry#updated(Calendar)} attributes. + * Creates an {@link Entry} element with the specified {@link Entry#id(Id)}, {@link Entry#title(Text)}, and + * {@link Entry#updated(Calendar)} attributes. * * @param id The {@link Entry#id(Id)} attribute. * @param title The {@link Entry#title(Text)} attribute. @@ -98,7 +104,8 @@ public class AtomBuilder { } /** - * Creates a {@link Feed} element with the specified {@link Feed#id(Id)}, {@link Entry#title(Text)}, and {@link Feed#updated(Calendar)} attributes. + * Creates a {@link Feed} element with the specified {@link Feed#id(Id)}, {@link Entry#title(Text)}, and + * {@link Feed#updated(Calendar)} attributes. * * @param id The {@link Feed#id(Id)} attribute. * @param title The {@link Feed#title(Text)} attribute. @@ -110,7 +117,8 @@ public class AtomBuilder { } /** - * Creates a {@link Feed} element with the specified {@link Feed#id(Id)}, {@link Entry#title(Text)}, and {@link Feed#updated(Calendar)} attributes. + * Creates a {@link Feed} element with the specified {@link Feed#id(Id)}, {@link Entry#title(Text)}, and + * {@link Feed#updated(Calendar)} attributes. * * @param id The {@link Feed#id(Id)} attribute. * @param title The {@link Feed#title(Text)} attribute. @@ -157,7 +165,8 @@ public class AtomBuilder { } /** - * Creates a {@link Link} element with the specified {@link Link#rel(String)}, {@link Link#type(String)}, and {@link Link#href(String)} attributes. + * Creates a {@link Link} element with the specified {@link Link#rel(String)}, {@link Link#type(String)}, and + * {@link Link#href(String)} attributes. * * @param rel The {@link Link#rel(String)} attribute. * @param type The {@link Link#type(String)} attribute. http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/atom/Category.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Category.java b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Category.java index 4fd9b3c..e0d0888 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Category.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Category.java @@ -39,7 +39,8 @@ import org.apache.juneau.xml.annotation.*; * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.Atom'>Atom</a> * </ul> @@ -56,6 +57,7 @@ public class Category extends Common { /** * Normal constructor. + * * @param term The category term. */ public Category(String term) { @@ -71,6 +73,7 @@ public class Category extends Common { //-------------------------------------------------------------------------------- /** + * * @return The category term. */ @Xml(format=ATTR) http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/atom/Common.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Common.java b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Common.java index 08b510b..26f9965 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Common.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Common.java @@ -35,7 +35,8 @@ import org.apache.juneau.xml.annotation.*; * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.Atom'>Atom</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/atom/CommonEntry.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/CommonEntry.java b/juneau-core/src/main/java/org/apache/juneau/dto/atom/CommonEntry.java index ed748c9..3d82327 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/CommonEntry.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/CommonEntry.java @@ -27,7 +27,8 @@ import org.apache.juneau.xml.annotation.*; * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.Atom'>Atom</a> * </ul> @@ -49,6 +50,7 @@ public class CommonEntry extends Common { /** * Normal constructor. + * * @param id The ID of this object. * @param title The title of this object. * @param updated The updated timestamp of this object. @@ -59,6 +61,7 @@ public class CommonEntry extends Common { /** * Normal constructor. + * * @param id The ID of this object. * @param title The title of this object. * @param updated The updated timestamp of this object. http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/atom/Content.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Content.java b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Content.java index c8cd0f2..c9c96da 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Content.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Content.java @@ -65,7 +65,8 @@ import org.apache.juneau.xml.annotation.*; * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.Atom'>Atom</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/atom/Entry.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Entry.java b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Entry.java index 251a3d6..f28f083 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Entry.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Entry.java @@ -45,7 +45,8 @@ import org.apache.juneau.transforms.*; * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.Atom'>Atom</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/atom/Feed.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Feed.java b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Feed.java index 0adc465..a261320 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Feed.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Feed.java @@ -48,7 +48,8 @@ import org.apache.juneau.xml.annotation.*; * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.Atom'>Atom</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/atom/Generator.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Generator.java b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Generator.java index 0d16ff6..8a48a28 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Generator.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Generator.java @@ -37,7 +37,8 @@ import org.apache.juneau.xml.annotation.*; * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.Atom'>Atom</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/atom/Icon.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Icon.java b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Icon.java index 37f0f03..964094c 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Icon.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Icon.java @@ -35,7 +35,8 @@ import org.apache.juneau.xml.annotation.*; * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.Atom'>Atom</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/atom/Id.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Id.java b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Id.java index ca64b85..1732a5f 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Id.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Id.java @@ -30,7 +30,8 @@ import org.apache.juneau.xml.annotation.*; * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.Atom'>Atom</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/atom/Link.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Link.java b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Link.java index 6d80912..e6ea325 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Link.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Link.java @@ -37,7 +37,8 @@ import org.apache.juneau.xml.annotation.*; * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.Atom'>Atom</a> * </ul> @@ -110,7 +111,7 @@ public class Link extends Common { /** * Sets the rel of this link. * - * @param rel The rell of this link. + * @param rel The rel of this link. * @return This object (for method chaining). */ @BeanProperty("rel") http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/atom/Logo.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Logo.java b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Logo.java index 8f648cc..b392e1c 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Logo.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Logo.java @@ -35,7 +35,8 @@ import org.apache.juneau.xml.annotation.*; * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.Atom'>Atom</a> * </ul> @@ -53,6 +54,7 @@ public class Logo extends Common { * Normal constructor. * <p> * The value can be of any of the following types: {@link URI}, {@link URL}, {@link String}. + * <br> * Strings must be valid URIs. * <p> * URIs defined by {@link UriResolver} can be used for values. @@ -85,6 +87,7 @@ public class Logo extends Common { * Sets the URI of the logo. * <p> * The value can be of any of the following types: {@link URI}, {@link URL}, {@link String}. + * <br> * Strings must be valid URIs. * <p> * URIs defined by {@link UriResolver} can be used for values. http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/atom/Person.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Person.java b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Person.java index aa5c336..7d0b8c4 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Person.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Person.java @@ -36,7 +36,8 @@ import org.apache.juneau.annotation.*; * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.Atom'>Atom</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/atom/Source.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Source.java b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Source.java index 901be93..416c6fa 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Source.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Source.java @@ -42,7 +42,8 @@ import org.apache.juneau.annotation.*; * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.Atom'>Atom</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/atom/Text.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Text.java b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Text.java index d38c823..f5ef404 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Text.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Text.java @@ -43,7 +43,8 @@ import org.apache.juneau.xml.annotation.*; * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.Atom'>Atom</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/atom/Utils.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Utils.java b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Utils.java index 6bedd91..c8d75a3 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Utils.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Utils.java @@ -21,7 +21,8 @@ import javax.xml.bind.*; * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.Atom'>Atom</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/atom/package.html ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/package.html b/juneau-core/src/main/java/org/apache/juneau/dto/atom/package.html index ac7c3bd..1208216 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/package.html +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/package.html @@ -74,11 +74,13 @@ <h2 class='topic' onclick='toggle(this)'>1 - Overview</h2> <div class='topic'> <p> - Juneau supports generation and consumption of ATOM feeds through the use of DTOs (Data Transfer Objects).<br> + Juneau supports generation and consumption of ATOM feeds through the use of DTOs (Data Transfer Objects). + <br> It uses existing support for serializing and parsing POJOs to and from XML to define these ATOM objects. </p> <p> - The examples shown here are pulled from the <code>AtomFeedResource</code> class in the <code>org.apache.juneau.sample.war</code> project. + The examples shown here are pulled from the <code>AtomFeedResource</code> class in the + <code>org.apache.juneau.sample.war</code> project. </p> @@ -87,8 +89,10 @@ <h3 class='topic' onclick='toggle(this)'>1.1 - Serializing ATOM feeds</h3> <div class='topic'> <p> - The Juneau ATOM feed DTOs are simply beans with fluent-style setters.<br> - The following code shows a feed being created programmatically using the {@link org.apache.juneau.dto.atom.AtomBuilder} class. + The Juneau ATOM feed DTOs are simply beans with fluent-style setters. + <br> + The following code shows a feed being created programmatically using the + {@link org.apache.juneau.dto.atom.AtomBuilder} class. </p> <p class='bcode'> @@ -420,7 +424,8 @@ <h4 class='topic' onclick='toggle(this)'>1.1.2 - ATOM/RDF/XML</h4> <div class='topic'> <p> - The {@link org.apache.juneau.jena.RdfSerializer} class and subclasses can also be used to produce ATOM in various RDF formats. + The {@link org.apache.juneau.jena.RdfSerializer} class and subclasses can also be used to produce ATOM + in various RDF formats. </p> <h6 class='figure'>ATOM/RDF/XML example</h6> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/cognos/Column.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/cognos/Column.java b/juneau-core/src/main/java/org/apache/juneau/dto/cognos/Column.java index f880815..5862668 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/cognos/Column.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/cognos/Column.java @@ -136,7 +136,8 @@ public class Column { /** * Bean property getter: <property>length</property>. * - * @return The value of the <property>length</property> property on this bean, or <jk>null</jk> if length is not applicable for the specified type. + * @return The value of the <property>length</property> property on this bean, or <jk>null</jk> if length is not + * applicable for the specified type. */ @Xml(format=XmlFormat.ATTR) public Integer getLength() { http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/cognos/DataSet.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/cognos/DataSet.java b/juneau-core/src/main/java/org/apache/juneau/dto/cognos/DataSet.java index f90a4f1..739001b 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/cognos/DataSet.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/cognos/DataSet.java @@ -26,7 +26,8 @@ import org.apache.juneau.xml.annotation.*; * <xt><?xml</xt> <xa>version</xa>=<xs>'1.0'</xs> <xa>encoding</xa>=<xs>'UTF-8'</xs><xt>?></xt> * <xt><c:dataset <xa>xmlns:c</xa>=<xs>'http://developer.cognos.com/schemas/xmldata/1/'</xs>></xt> * <xt><c:metadata></xt> - * <xt><c:item</xt> <xa>name</xa>=<xs>'name'</xs> <xa>type</xa>=<xs>'xs:String'</xs> <xa>length</xa>=<xs>'255'</xs><xt>/></xt> + * <xt><c:item</xt> <xa>name</xa>=<xs>'name'</xs> <xa>type</xa>=<xs>'xs:String'</xs> + * <xa>length</xa>=<xs>'255'</xs><xt>/></xt> * <xt><c:item</xt> <xa>name</xa>=<xs>'age'</xs> <xa>type</xa>=<xs>'xs:int'</xs><xt>/></xt> * <xt><c:item</xt> <xa>name</xa>=<xs>'numAddresses'</xs> <xa>type</xa>=<xs>'xs:int'</xs><xt>/></xt> * <xt></c:metadata></xt> @@ -45,11 +46,12 @@ import org.apache.juneau.xml.annotation.*; * <xt></c:dataset></xt> * </p> * <p> - * Only 2-dimentional POJOs (arrays or collections of maps or beans) can be serialized to Cognos. + * Only 2-dimensional POJOs (arrays or collections of maps or beans) can be serialized to Cognos. * * <h5 class='section'>Example:</h5> * <p> - * The construct shown above is a serialized <code>AddressBook</code> object which is a subclass of <code>LinkedList<Person></code>. + * The construct shown above is a serialized <code>AddressBook</code> object which is a subclass of + * <code>LinkedList<Person></code>. * The code for generating the XML is as follows... * </p> * <p class='bcode'> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/html5/A.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/A.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/A.java index 07a4a00..d9a4286 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/A.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/A.java @@ -20,11 +20,13 @@ import org.apache.juneau.*; import org.apache.juneau.annotation.*; /** - * DTO for an HTML <a class="doclink" href="https://www.w3.org/TR/html5/text-level-semantics.html#the-a-element"><a></a> element. + * DTO for an HTML <a class="doclink" + * href="https://www.w3.org/TR/html5/text-level-semantics.html#the-a-element"><a></a> element. * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a> * </ul> @@ -66,6 +68,7 @@ public class A extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/links.html#attr-hyperlink-hreflang">hreflang</a> attribute. * Language of the linked resource. + * * @param hreflang The new value for this attribute. * @return This object (for method chaining). */ @@ -77,6 +80,7 @@ public class A extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/links.html#attr-hyperlink-rel">rel</a> attribute. * Relationship between the document containing the hyperlink and the destination resource. + * * @param rel The new value for this attribute. * @return This object (for method chaining). */ @@ -88,6 +92,7 @@ public class A extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/links.html#attr-hyperlink-target">target</a> attribute. * Default browsing context for hyperlink navigation and form submission. + * * @param target The new value for this attribute. * @return This object (for method chaining). */ @@ -99,6 +104,7 @@ public class A extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/links.html#attr-hyperlink-type">type</a> attribute. * Hint for the type of the referenced resource. + * * @param type The new value for this attribute. * @return This object (for method chaining). */ http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/html5/Abbr.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Abbr.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Abbr.java index 2bad2c9..7c08fb3 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Abbr.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Abbr.java @@ -15,12 +15,14 @@ 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-abbr-element"><abbr></a> element. + * DTO for an HTML <a class="doclink" + * href="https://www.w3.org/TR/html5/text-level-semantics.html#the-abbr-element"><abbr></a> element. * <p> * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/html5/Address.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Address.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Address.java index 6a5440d..79900bd 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Address.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Address.java @@ -15,12 +15,14 @@ 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-address-element"><address></a> element. + * DTO for an HTML <a class="doclink" + * href="https://www.w3.org/TR/html5/sections.html#the-address-element"><address></a> element. * <p> * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/html5/Area.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Area.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Area.java index ad6f335..fc8591d 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Area.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Area.java @@ -19,12 +19,14 @@ 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-area-element"><area></a> element. + * DTO for an HTML <a class="doclink" + * href="https://www.w3.org/TR/html5/embedded-content-0.html#the-area-element"><area></a> element. * <p> * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a> * </ul> @@ -36,6 +38,7 @@ public class Area extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-area-alt">alt</a> attribute. * Replacement text for use when images are not available. + * * @param alt The new value for this attribute. * @return This object (for method chaining). */ @@ -45,8 +48,10 @@ public class Area extends HtmlElementVoid { } /** - * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-area-coords">coords</a> attribute. + * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-area-coords">coords</a> + * attribute. * Coordinates for the shape to be created in an image map. + * * @param coords The new value for this attribute. * @return This object (for method chaining). */ @@ -58,6 +63,7 @@ public class Area extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/links.html#attr-hyperlink-download">download</a> attribute. * Whether to download the resource instead of navigating to it, and its file name if so. + * * @param download The new value for this attribute. * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). @@ -88,6 +94,7 @@ public class Area extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/links.html#attr-hyperlink-hreflang">hreflang</a> attribute. * Language of the linked resource. + * * @param hreflang The new value for this attribute. * @return This object (for method chaining). */ @@ -99,6 +106,7 @@ public class Area extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/links.html#attr-hyperlink-rel">rel</a> attribute. * Relationship between the document containing the hyperlink and the destination resource. + * * @param rel The new value for this attribute. * @return This object (for method chaining). */ @@ -110,6 +118,7 @@ public class Area extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-area-shape">shape</a> attribute. * The kind of shape to be created in an image map. + * * @param shape The new value for this attribute. * @return This object (for method chaining). */ @@ -121,6 +130,7 @@ public class Area extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/links.html#attr-hyperlink-target">target</a> attribute. * Browsing context for hyperlink navigation. + * * @param target The new value for this attribute. * @return This object (for method chaining). */ @@ -132,6 +142,7 @@ public class Area extends HtmlElementVoid { /** * <a class="doclink" href="https://www.w3.org/TR/html5/links.html#attr-hyperlink-type">type</a> attribute. * Hint for the type of the referenced resource. + * * @param type The new value for this attribute. * @return This object (for method chaining). */ http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/html5/Article.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Article.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Article.java index 2e83e6f..1a5687d 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Article.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Article.java @@ -15,12 +15,14 @@ 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-article-element"><article></a> element. + * DTO for an HTML <a class="doclink" + * href="https://www.w3.org/TR/html5/sections.html#the-article-element"><article></a> element. * <p> * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/html5/Aside.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Aside.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Aside.java index fc1ed02..5981926 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Aside.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Aside.java @@ -15,12 +15,14 @@ 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-aside-element"><aside></a> element. + * DTO for an HTML <a class="doclink" + * href="https://www.w3.org/TR/html5/sections.html#the-aside-element"><aside></a> element. * <p> * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/html5/Audio.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Audio.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Audio.java index b5fef05..17887c2 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Audio.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Audio.java @@ -19,12 +19,14 @@ 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-audio-element"><audio></a> element. + * DTO for an HTML <a class="doclink" + * href="https://www.w3.org/TR/html5/embedded-content-0.html#the-audio-element"><audio></a> element. * <p> * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a> * </ul> @@ -34,8 +36,10 @@ import org.apache.juneau.annotation.*; public class Audio extends HtmlElementContainer { /** - * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-autoplay">autoplay</a> attribute. + * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-autoplay">autoplay</a> + * attribute. * Hint that the media resource can be started automatically when the page is loaded. + * * @param autoplay The new value for this attribute. * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). @@ -46,8 +50,10 @@ public class Audio extends HtmlElementContainer { } /** - * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-controls">controls</a> attribute. + * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-controls">controls</a> + * attribute. * Show user agent controls. + * * @param controls The new value for this attribute. * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). @@ -58,8 +64,10 @@ public class Audio extends HtmlElementContainer { } /** - * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-crossorigin">crossorigin</a> attribute. - * How the element handles crossorigin requests. + * <a class="doclink" + * href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-crossorigin">crossorigin</a> attribute. + * How the element handles cross-origin requests. + * * @param crossorigin The new value for this attribute. * @return This object (for method chaining). */ @@ -71,6 +79,7 @@ public class Audio extends HtmlElementContainer { /** * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-loop">loop</a> attribute. * Whether to loop the media resource. + * * @param loop The new value for this attribute. * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). @@ -81,8 +90,10 @@ public class Audio extends HtmlElementContainer { } /** - * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-mediagroup">mediagroup</a> attribute. + * <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. * @return This object (for method chaining). */ @@ -92,8 +103,10 @@ public class Audio extends HtmlElementContainer { } /** - * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-muted">muted</a> attribute. + * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-muted">muted</a> + * attribute. * Whether to mute the media resource by default. + * * @param muted The new value for this attribute. * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). @@ -104,8 +117,10 @@ public class Audio extends HtmlElementContainer { } /** - * <a class="doclink" href="https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-preload">preload</a> attribute. + * <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. * @return This object (for method chaining). */ http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/html5/B.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/B.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/B.java index 86f9a6c..34cc254 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/B.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/B.java @@ -15,12 +15,14 @@ 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-b-element"><b></a> element. + * DTO for an HTML <a class="doclink" + * href="https://www.w3.org/TR/html5/text-level-semantics.html#the-b-element"><b></a> element. * <p> * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/html5/Base.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Base.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Base.java index 1618c86..c4fecdb 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Base.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Base.java @@ -19,12 +19,14 @@ 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-base-element"><base></a> element. + * DTO for an HTML <a class="doclink" + * href="https://www.w3.org/TR/html5/document-metadata.html#the-base-element"><base></a> element. * <p> * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a> * </ul> @@ -52,8 +54,10 @@ public class Base extends HtmlElementVoid { } /** - * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-base-target">target</a> attribute. + * <a class="doclink" href="https://www.w3.org/TR/html5/document-metadata.html#attr-base-target">target</a> + * attribute. * Default browsing context for hyperlink navigation and form submission. + * * @param target The new value for this attribute. * @return This object (for method chaining). */ http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/html5/Bdi.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Bdi.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Bdi.java index 7202b19..085532e 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Bdi.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Bdi.java @@ -15,12 +15,14 @@ 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-bdi-element"><bdi></a> element. + * DTO for an HTML <a class="doclink" + * href="https://www.w3.org/TR/html5/text-level-semantics.html#the-bdi-element"><bdi></a> element. * <p> * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/html5/Bdo.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Bdo.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Bdo.java index d249e12..fcea11a 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Bdo.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Bdo.java @@ -15,12 +15,14 @@ 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-bdo-element"><bdo></a> element. + * DTO for an HTML <a class="doclink" + * href="https://www.w3.org/TR/html5/text-level-semantics.html#the-bdo-element"><bdo></a> element. * <p> * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/html5/Blockquote.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Blockquote.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Blockquote.java index c328208..6f7b8be 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Blockquote.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Blockquote.java @@ -15,12 +15,14 @@ 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-blockquote-element"><blockquote></a> element. + * DTO for an HTML <a class="doclink" + * href="https://www.w3.org/TR/html5/grouping-content.html#the-blockquote-element"><blockquote></a> element. * <p> * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a> * </ul> @@ -30,8 +32,10 @@ import org.apache.juneau.annotation.*; public class Blockquote extends HtmlElementMixed { /** - * <a class="doclink" href="https://www.w3.org/TR/html5/grouping-content.html#attr-blockquote-cite">cite</a> attribute. - * Link to the source of the quotation.. + * <a class="doclink" href="https://www.w3.org/TR/html5/grouping-content.html#attr-blockquote-cite">cite</a> + * attribute. + * Link to the source of the quotation. + * * @param cite The new value for this attribute. * @return This object (for method chaining). */ http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/html5/Body.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Body.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Body.java index 225e800..1f111d5 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Body.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Body.java @@ -15,12 +15,14 @@ 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-body-element"><body></a> element. + * DTO for an HTML <a class="doclink" + * href="https://www.w3.org/TR/html5/sections.html#the-body-element"><body></a> element. * <p> * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a> * </ul> @@ -30,8 +32,9 @@ import org.apache.juneau.annotation.*; public class Body extends HtmlElementMixed { /** - * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-window-onafterprint">onafterprint</a> attribute. - * //onbeforeprint https://www.w3.org/TR/html5/webappapis.html#handler-window-onbeforeprint. + * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-window-onafterprint">onafterprint</a> + * attribute. + * * @param onafterprint The new value for this attribute. * @return This object (for method chaining). */ @@ -41,8 +44,9 @@ public class Body extends HtmlElementMixed { } /** - * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-window-onbeforeunload">onbeforeunload</a> attribute. - * //onhashchange https://www.w3.org/TR/html5/webappapis.html#handler-window-onhashchange. + * <a class="doclink" + * href="https://www.w3.org/TR/html5/webappapis.html#handler-window-onbeforeunload">onbeforeunload</a> attribute. + * * @param onbeforeunload The new value for this attribute. * @return This object (for method chaining). */ @@ -52,8 +56,9 @@ public class Body extends HtmlElementMixed { } /** - * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-window-onmessage">onmessage</a> attribute. - * //onoffline https://www.w3.org/TR/html5/webappapis.html#handler-window-onoffline. + * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-window-onmessage">onmessage</a> + * attribute. + * * @param onmessage The new value for this attribute. * @return This object (for method chaining). */ @@ -63,8 +68,9 @@ public class Body extends HtmlElementMixed { } /** - * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-window-ononline">ononline</a> attribute. - * //onpagehide https://www.w3.org/TR/html5/webappapis.html#handler-window-onpagehide. + * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-window-ononline">ononline</a> + * attribute. + * * @param ononline The new value for this attribute. * @return This object (for method chaining). */ @@ -74,8 +80,9 @@ public class Body extends HtmlElementMixed { } /** - * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-window-onpageshow">onpageshow</a> attribute. - * //onpopstate https://www.w3.org/TR/html5/webappapis.html#handler-window-onpopstate. + * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-window-onpageshow">onpageshow</a> + * attribute. + * * @param onpageshow The new value for this attribute. * @return This object (for method chaining). */ @@ -85,8 +92,9 @@ public class Body extends HtmlElementMixed { } /** - * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-window-onstorage">onstorage</a> attribute. - * //onunload https://www.w3.org/TR/html5/webappapis.html#handler-window-onunload. + * <a class="doclink" href="https://www.w3.org/TR/html5/webappapis.html#handler-window-onstorage">onstorage</a> + * attribute. + * * @param onstorage The new value for this attribute. * @return This object (for method chaining). */ http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/html5/Br.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Br.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Br.java index 5463868..e9d0da2 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Br.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Br.java @@ -15,12 +15,14 @@ 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-br-element"><br></a> element. + * DTO for an HTML <a class="doclink" + * href="https://www.w3.org/TR/html5/text-level-semantics.html#the-br-element"><br></a> element. * <p> * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a> * </ul> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/html5/Button.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Button.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Button.java index 11fa930..2f7b0eb 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Button.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Button.java @@ -19,12 +19,14 @@ 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-button-element"><button></a> element. + * DTO for an HTML <a class="doclink" + * href="https://www.w3.org/TR/html5/forms.html#the-button-element"><button></a> element. * <p> * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a> * </ul> @@ -36,6 +38,7 @@ public class Button extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-autofocus">autofocus</a> attribute. * Automatically focus the form control when the page is loaded. + * * @param autofocus The new value for this attribute. * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). @@ -48,6 +51,7 @@ public class Button extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-disabled">disabled</a> attribute. * Whether the form control is disabled. + * * @param disabled The new value for this attribute. * Typically a {@link Boolean} or {@link String}. * @return This object (for method chaining). @@ -60,6 +64,7 @@ public class Button extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fae-form">form</a> attribute. * Associates the control with a form element. + * * @param form The new value for this attribute. * @return This object (for method chaining). */ @@ -88,6 +93,7 @@ public class Button extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formenctype">formenctype</a> attribute. * Form data set encoding type to use for form submission. + * * @param formenctype The new value for this attribute. * @return This object (for method chaining). */ @@ -99,6 +105,7 @@ public class Button extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formmethod">formmethod</a> attribute. * HTTP method to use for form submission. + * * @param formmethod The new value for this attribute. * @return This object (for method chaining). */ @@ -108,8 +115,10 @@ public class Button extends HtmlElementMixed { } /** - * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formnovalidate">formnovalidate</a> attribute. + * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formnovalidate">formnovalidate</a> + * attribute. * Bypass form control validation for form submission. + * * @param formnovalidate The new value for this attribute. * @return This object (for method chaining). */ @@ -121,6 +130,7 @@ public class Button extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-formtarget">formtarget</a> attribute. * Browsing context for form submission. + * * @param formtarget The new value for this attribute. * @return This object (for method chaining). */ @@ -132,6 +142,7 @@ public class Button extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fs-menu">menu</a> attribute. * Specifies the element's designated pop-up menu. + * * @param menu The new value for this attribute. * @return This object (for method chaining). */ @@ -143,6 +154,7 @@ public class Button extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-fe-name">name</a> attribute. * Name of form control to use for form submission and in the form.elements API. + * * @param name The new value for this attribute. * @return This object (for method chaining). */ @@ -154,6 +166,7 @@ public class Button extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-button-type">type</a> attribute. * Type of button. + * * @param type The new value for this attribute. * @return This object (for method chaining). */ @@ -165,6 +178,7 @@ public class Button extends HtmlElementMixed { /** * <a class="doclink" href="https://www.w3.org/TR/html5/forms.html#attr-button-value">value</a> attribute. * Value to be used for form submission. + * * @param value The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/5c4762ee/juneau-core/src/main/java/org/apache/juneau/dto/html5/Canvas.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Canvas.java b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Canvas.java index 5e81772..b3eeb0e 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/html5/Canvas.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/html5/Canvas.java @@ -15,12 +15,14 @@ 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/scripting-1.html#the-canvas-element"><canvas></a> element. + * DTO for an HTML <a class="doclink" + * href="https://www.w3.org/TR/html5/scripting-1.html#the-canvas-element"><canvas></a> element. * <p> * * <h6 class='topic'>Additional Information</h6> * <ul class='doctree'> - * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects (org.apache.juneau.dto)</a> + * <li class='link'><a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects + * (org.apache.juneau.dto)</a> * <ul> * <li class='sublink'><a class='doclink' href='../../../../../overview-summary.html#DTOs.HTML5'>HTML5</a> * </ul> @@ -32,6 +34,7 @@ public class Canvas extends HtmlElementContainer { /** * <a class="doclink" href="https://www.w3.org/TR/html5/scripting-1.html#attr-canvas-height">height</a> attribute. * Vertical dimension. + * * @param height The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining). @@ -44,6 +47,7 @@ public class Canvas extends HtmlElementContainer { /** * <a class="doclink" href="https://www.w3.org/TR/html5/scripting-1.html#attr-canvas-width">width</a> attribute. * Horizontal dimension. + * * @param width The new value for this attribute. * Typically a {@link Number} or {@link String}. * @return This object (for method chaining).
