http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/1b5bde65/content/site/apidocs/org/apache/juneau/annotation/Consumes.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/annotation/Consumes.html b/content/site/apidocs/org/apache/juneau/annotation/Consumes.html index c1ac6ce..4199d8f 100644 --- a/content/site/apidocs/org/apache/juneau/annotation/Consumes.html +++ b/content/site/apidocs/org/apache/juneau/annotation/Consumes.html @@ -96,27 +96,30 @@ <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Target.html?is-external=true" title="class or interface in java.lang.annotation">@Target</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Target.html?is-external=true#value--" title="class or interface in java.lang.annotation">value</a>=<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/ElementType.html?is-external=true#TYPE" title="class or interface in java.lang.annotation">TYPE</a>) <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Retention.html?is-external=true" title="class or interface in java.lang.annotation">@Retention</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Retention.html?is-external=true#value--" title="class or interface in java.lang.annotation">value</a>=<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/RetentionPolicy.html?is-external=true#RUNTIME" title="class or interface in java.lang.annotation">RUNTIME</a>) <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Inherited.html?is-external=true" title="class or interface in java.lang.annotation">@Inherited</a> -public @interface <a href="../../../../src-html/org/apache/juneau/annotation/Consumes.html#line.57">Consumes</a></pre> +public @interface <a href="../../../../src-html/org/apache/juneau/annotation/Consumes.html#line.60">Consumes</a></pre> <div class="block">Annotation used on subclasses of <a href="../../../../org/apache/juneau/parser/Parser.html" title="class in org.apache.juneau.parser"><code>Parser</code></a> to identify the media types that it consumes. <h5 class='section'>Description:</h5> - <p> + Provides a way to define the contents of <a href="../../../../org/apache/juneau/parser/Parser.html#getMediaTypes--"><code>Parser.getMediaTypes()</code></a> through an annotation. + <p> The <a href="../../../../org/apache/juneau/parser/Parser.html#getMediaTypes--"><code>Parser.getMediaTypes()</code></a> default implementation gathers the media types by looking for this annotation. It should be noted that this annotation is optional and that the <a href="../../../../org/apache/juneau/parser/Parser.html#getMediaTypes--"><code>Parser.getMediaTypes()</code></a> method can be overridden by subclasses to return the media types programmatically. <h5 class='section'>Example:</h5> - <p> + Standard example: <p class='bcode'> <ja>@Consumes</ja>(<js>"application/json,text/json"</js>) <jk>public class</jk> JsonParser <jk>extends</jk> ReaderParser {...} </p> + <p> The media types can also be <code>media-range</code> values per - <a class="doclink" href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1">RFC2616/14.1</a>. + <a class="doclink" href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1">RFC2616/14.1</a>. + <p class='bcode'> <jc>// Consumes any text</jc> <ja>@Consumes</ja>(<js>"text\/*"</js>) @@ -171,8 +174,9 @@ public @interface <a href="../../../../src-html/org/apache/juneau/annotation/Con <ul class="blockListLast"> <li class="blockList"> <h4>value</h4> -<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> <a href="../../../../src-html/org/apache/juneau/annotation/Consumes.html#line.67">value</a></pre> +<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> <a href="../../../../src-html/org/apache/juneau/annotation/Consumes.html#line.71">value</a></pre> <div class="block">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></div>
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/1b5bde65/content/site/apidocs/org/apache/juneau/annotation/NameProperty.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/annotation/NameProperty.html b/content/site/apidocs/org/apache/juneau/annotation/NameProperty.html index 042d964..bee6d0d 100644 --- a/content/site/apidocs/org/apache/juneau/annotation/NameProperty.html +++ b/content/site/apidocs/org/apache/juneau/annotation/NameProperty.html @@ -95,17 +95,18 @@ <pre><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Target.html?is-external=true" title="class or interface in java.lang.annotation">@Target</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Target.html?is-external=true#value--" title="class or interface in java.lang.annotation">value</a>={<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/ElementType.html?is-external=true#METHOD" title="class or interface in java.lang.annotation">METHOD</a>,<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/ElementType.html?is-external=true#FIELD" title="class or interface in java.lang.annotation">FIELD</a>}) <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Retention.html?is-external=true" title="class or interface in java.lang.annotation">@Retention</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Retention.html?is-external=true#value--" title="class or interface in java.lang.annotation">value</a>=<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/RetentionPolicy.html?is-external=true#RUNTIME" title="class or interface in java.lang.annotation">RUNTIME</a>) <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Inherited.html?is-external=true" title="class or interface in java.lang.annotation">@Inherited</a> -public @interface <a href="../../../../src-html/org/apache/juneau/annotation/NameProperty.html#line.56">NameProperty</a></pre> -<div class="block">Identifies a setter as a method for setting the name of a POJO as it's known by - its parent object. +public @interface <a href="../../../../src-html/org/apache/juneau/annotation/NameProperty.html#line.57">NameProperty</a></pre> +<div class="block">Identifies a setter as a method for setting the name of a POJO as it's known by its parent object. + <p> - For example, the <a href="../../../../org/apache/juneau/ini/Section.html" title="class in org.apache.juneau.ini"><code>Section</code></a> class must know the name it's known by it's parent - <a href="../../../../org/apache/juneau/ini/ConfigFileImpl.html" title="class in org.apache.juneau.ini"><code>ConfigFileImpl</code></a> class, so parsers will call this method with the section name + For example, the <a href="../../../../org/apache/juneau/ini/Section.html" title="class in org.apache.juneau.ini"><code>Section</code></a> class must know the name it's known by it's parent <a href="../../../../org/apache/juneau/ini/ConfigFileImpl.html" title="class in org.apache.juneau.ini"><code>ConfigFileImpl</code></a> class, + so parsers will call this method with the section name using the <a href="../../../../org/apache/juneau/ini/Section.html#setName-java.lang.String-"><code>Section.setName(String)</code></a> 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. - <br> + + <p> For example: <p class='bcode'> { @@ -120,7 +121,7 @@ public @interface <a href="../../../../src-html/org/apache/juneau/annotation/Nam <jk>public char</jk> <jf>sex</jf>; } </p> - <p> + <h5 class='section'>Notes:</h5> <ul> <li>The annotated field or method does not need to be public. http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/1b5bde65/content/site/apidocs/org/apache/juneau/annotation/ParentProperty.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/annotation/ParentProperty.html b/content/site/apidocs/org/apache/juneau/annotation/ParentProperty.html index c2e1661..c748618 100644 --- a/content/site/apidocs/org/apache/juneau/annotation/ParentProperty.html +++ b/content/site/apidocs/org/apache/juneau/annotation/ParentProperty.html @@ -95,12 +95,14 @@ <pre><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Target.html?is-external=true" title="class or interface in java.lang.annotation">@Target</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Target.html?is-external=true#value--" title="class or interface in java.lang.annotation">value</a>={<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/ElementType.html?is-external=true#METHOD" title="class or interface in java.lang.annotation">METHOD</a>,<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/ElementType.html?is-external=true#FIELD" title="class or interface in java.lang.annotation">FIELD</a>}) <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Retention.html?is-external=true" title="class or interface in java.lang.annotation">@Retention</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Retention.html?is-external=true#value--" title="class or interface in java.lang.annotation">value</a>=<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/RetentionPolicy.html?is-external=true#RUNTIME" title="class or interface in java.lang.annotation">RUNTIME</a>) <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Inherited.html?is-external=true" title="class or interface in java.lang.annotation">@Inherited</a> -public @interface <a href="../../../../src-html/org/apache/juneau/annotation/ParentProperty.html#line.50">ParentProperty</a></pre> +public @interface <a href="../../../../src-html/org/apache/juneau/annotation/ParentProperty.html#line.52">ParentProperty</a></pre> <div class="block">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 <a href="../../../../org/apache/juneau/ini/Section.html" title="class in org.apache.juneau.ini"><code>Section</code></a> class cannot exist outside the scope of a parent <a href="../../../../org/apache/juneau/ini/ConfigFileImpl.html" title="class in org.apache.juneau.ini"><code>ConfigFileImpl</code></a> class, so parsers will add a reference to the config file using the <a href="../../../../org/apache/juneau/ini/Section.html#setParent-org.apache.juneau.ini.ConfigFileImpl-"><code>Section.setParent(ConfigFileImpl)</code></a> 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'> @@ -114,7 +116,7 @@ public @interface <a href="../../../../src-html/org/apache/juneau/annotation/Par <jk>public char</jk> <jf>sex</jf>; } </p> - <p> + <h5 class='section'>Notes:</h5> <ul> <li>The annotated field or method does not need to be public. http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/1b5bde65/content/site/apidocs/org/apache/juneau/annotation/Pojo.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/annotation/Pojo.html b/content/site/apidocs/org/apache/juneau/annotation/Pojo.html index b86a484..d33bfc3 100644 --- a/content/site/apidocs/org/apache/juneau/annotation/Pojo.html +++ b/content/site/apidocs/org/apache/juneau/annotation/Pojo.html @@ -143,7 +143,7 @@ public @interface <a href="../../../../src-html/org/apache/juneau/annotation/Poj <ul class="blockListLast"> <li class="blockList"> <h4>swap</h4> -<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><?> <a href="../../../../src-html/org/apache/juneau/annotation/Pojo.html#line.82">swap</a></pre> +<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><?> <a href="../../../../src-html/org/apache/juneau/annotation/Pojo.html#line.83">swap</a></pre> <div class="block">Associate a <a href="../../../../org/apache/juneau/transform/PojoSwap.html" title="class in org.apache.juneau.transform"><code>PojoSwap</code></a> or <a href="../../../../org/apache/juneau/transform/SurrogateSwap.html" title="class in org.apache.juneau.transform"><code>SurrogateSwap</code></a> with this class type. <p> @@ -187,6 +187,7 @@ public @interface <a href="../../../../src-html/org/apache/juneau/annotation/Poj <jsm>assertEquals</jsm>(<js>"bar"</js>, b.<jf>f1</jf>); } </p> + <p> Note that using this annotation is functionally equivalent to adding swaps to the serializers and parsers: <p class='bcode'> http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/1b5bde65/content/site/apidocs/org/apache/juneau/annotation/Produces.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/annotation/Produces.html b/content/site/apidocs/org/apache/juneau/annotation/Produces.html index 3f0344d..c810979 100644 --- a/content/site/apidocs/org/apache/juneau/annotation/Produces.html +++ b/content/site/apidocs/org/apache/juneau/annotation/Produces.html @@ -100,26 +100,26 @@ public @interface <a href="../../../../src-html/org/apache/juneau/annotation/Pro <div class="block">Annotation used on subclasses of <a href="../../../../org/apache/juneau/serializer/Serializer.html" title="class in org.apache.juneau.serializer"><code>Serializer</code></a> to identify the media types that it produces. <h5 class='section'>Description:</h5> - <p> + Provides a way to define the contents of <a href="../../../../org/apache/juneau/serializer/Serializer.html#getMediaTypes--"><code>Serializer.getMediaTypes()</code></a> through an annotation. + <p> The <a href="../../../../org/apache/juneau/serializer/Serializer.html#getMediaTypes--"><code>Serializer.getMediaTypes()</code></a> default implementation gathers the media types by looking for this annotation. - <br> - It should be noted that this annotation is optional and that the <a href="../../../../org/apache/juneau/serializer/Serializer.html#getMediaTypes--"><code>Serializer.getMediaTypes()</code></a> method can + <br>It should be noted that this annotation is optional and that the <a href="../../../../org/apache/juneau/serializer/Serializer.html#getMediaTypes--"><code>Serializer.getMediaTypes()</code></a> method can be overridden by subclasses to return the media types programmatically. <h5 class='section'>Example:</h5> - <p> + Standard example: <p class='bcode'> <ja>@Produces</ja>(<js>"application/json,text/json"</js>) <jk>public class</jk> JsonSerializer <jk>extends</jk> WriterSerializer {...} </p> + <p> The media types can also be <code>media-range</code> values per <a class="doclink" href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1">RFC2616/14.1</a>. - <br> - When meta-characters are used, you should specify the <a href="../../../../org/apache/juneau/annotation/Produces.html#contentType--"><code>contentType()</code></a> value to indicate the real media type + <br>When meta-characters are used, you should specify the <a href="../../../../org/apache/juneau/annotation/Produces.html#contentType--"><code>contentType()</code></a> value to indicate the real media type value that can be set on the <code>Content-Type</code> response header. <p class='bcode'> @@ -182,8 +182,9 @@ public @interface <a href="../../../../src-html/org/apache/juneau/annotation/Pro <ul class="blockList"> <li class="blockList"> <h4>value</h4> -<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> <a href="../../../../src-html/org/apache/juneau/annotation/Produces.html#line.72">value</a></pre> +<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> <a href="../../../../src-html/org/apache/juneau/annotation/Produces.html#line.73">value</a></pre> <div class="block">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></div> @@ -206,8 +207,9 @@ public @interface <a href="../../../../src-html/org/apache/juneau/annotation/Pro <ul class="blockListLast"> <li class="blockList"> <h4>contentType</h4> -<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> <a href="../../../../src-html/org/apache/juneau/annotation/Produces.html#line.82">contentType</a></pre> +<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> <a href="../../../../src-html/org/apache/juneau/annotation/Produces.html#line.84">contentType</a></pre> <div class="block">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.</div> http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/1b5bde65/content/site/apidocs/org/apache/juneau/annotation/ThreadSafe.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/annotation/ThreadSafe.html b/content/site/apidocs/org/apache/juneau/annotation/ThreadSafe.html index 92e84dc..3b8daab 100644 --- a/content/site/apidocs/org/apache/juneau/annotation/ThreadSafe.html +++ b/content/site/apidocs/org/apache/juneau/annotation/ThreadSafe.html @@ -95,8 +95,9 @@ <pre><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Documented.html?is-external=true" title="class or interface in java.lang.annotation">@Documented</a> <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Target.html?is-external=true" title="class or interface in java.lang.annotation">@Target</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Target.html?is-external=true#value--" title="class or interface in java.lang.annotation">value</a>=<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/ElementType.html?is-external=true#TYPE" title="class or interface in java.lang.annotation">TYPE</a>) <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Inherited.html?is-external=true" title="class or interface in java.lang.annotation">@Inherited</a> -public @interface <a href="../../../../src-html/org/apache/juneau/annotation/ThreadSafe.html#line.27">ThreadSafe</a></pre> +public @interface <a href="../../../../src-html/org/apache/juneau/annotation/ThreadSafe.html#line.28">ThreadSafe</a></pre> <div class="block">Identifies a class as being thread-safe. + <p> Used for documentation purposes only.</div> </li> http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/1b5bde65/content/site/apidocs/org/apache/juneau/annotation/URI.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/annotation/URI.html b/content/site/apidocs/org/apache/juneau/annotation/URI.html index 7ce40b2..a23cffc 100644 --- a/content/site/apidocs/org/apache/juneau/annotation/URI.html +++ b/content/site/apidocs/org/apache/juneau/annotation/URI.html @@ -96,22 +96,27 @@ <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Target.html?is-external=true" title="class or interface in java.lang.annotation">@Target</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Target.html?is-external=true#value--" title="class or interface in java.lang.annotation">value</a>={<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/ElementType.html?is-external=true#TYPE" title="class or interface in java.lang.annotation">TYPE</a>,<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/ElementType.html?is-external=true#FIELD" title="class or interface in java.lang.annotation">FIELD</a>,<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/ElementType.html?is-external=true#METHOD" title="class or interface in java.lang.annotation">METHOD</a>}) <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Retention.html?is-external=true" title="class or interface in java.lang.annotation">@Retention</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Retention.html?is-external=true#value--" title="class or interface in java.lang.annotation">value</a>=<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/RetentionPolicy.html?is-external=true#RUNTIME" title="class or interface in java.lang.annotation">RUNTIME</a>) <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Inherited.html?is-external=true" title="class or interface in java.lang.annotation">@Inherited</a> -public @interface <a href="../../../../src-html/org/apache/juneau/annotation/URI.html#line.72">URI</a></pre> +public @interface <a href="../../../../src-html/org/apache/juneau/annotation/URI.html#line.77">URI</a></pre> <div class="block">Used to identify a class or bean property as a URI. + <p> By default, instances of <a href="http://docs.oracle.com/javase/7/docs/api/java/net/URL.html?is-external=true" title="class or interface in java.net"><code>URL</code></a> and <a href="../../../../org/apache/juneau/annotation/URI.html" title="annotation in org.apache.juneau.annotation"><code>URI</code></a> 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 <a href="../../../../org/apache/juneau/serializer/SerializerContext.html#SERIALIZER_uriResolution"><code>SerializerContext.SERIALIZER_uriResolution</code></a> and <a href="../../../../org/apache/juneau/serializer/SerializerContext.html#SERIALIZER_uriRelativity"><code>SerializerContext.SERIALIZER_uriRelativity</code></a> configuration settings, and the URI context defined by the <a href="../../../../org/apache/juneau/UriContext.html" title="class in org.apache.juneau"><code>UriContext</code></a> that's part of the serializer session. + <p> Refer to the <a href="../../../../org/apache/juneau/UriResolver.html" title="class in org.apache.juneau"><code>UriResolver</code></a> class for information about the types of URIs that can be resolved during 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-website/blob/1b5bde65/content/site/apidocs/org/apache/juneau/annotation/package-summary.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/annotation/package-summary.html b/content/site/apidocs/org/apache/juneau/annotation/package-summary.html index f9c1b0d..472f7a0 100644 --- a/content/site/apidocs/org/apache/juneau/annotation/package-summary.html +++ b/content/site/apidocs/org/apache/juneau/annotation/package-summary.html @@ -123,7 +123,7 @@ <tr class="rowColor"> <td class="colFirst"><a href="../../../../org/apache/juneau/annotation/BeanParam.html" title="annotation in org.apache.juneau.annotation">BeanParam</a></td> <td class="colLast"> -<div class="block">TODO</div> +<div class="block">Future support for defining bean properties on constructor args.</div> </td> </tr> <tr class="altColor"> @@ -141,8 +141,7 @@ <tr class="altColor"> <td class="colFirst"><a href="../../../../org/apache/juneau/annotation/NameProperty.html" title="annotation in org.apache.juneau.annotation">NameProperty</a></td> <td class="colLast"> -<div class="block">Identifies a setter as a method for setting the name of a POJO as it's known by - its parent object.</div> +<div class="block">Identifies a setter as a method for setting the name of a POJO as it's known by its parent object.</div> </td> </tr> <tr class="rowColor"> http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/1b5bde65/content/site/apidocs/org/apache/juneau/csv/CsvParser.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/csv/CsvParser.html b/content/site/apidocs/org/apache/juneau/csv/CsvParser.html index b26b648..f1c65d3 100644 --- a/content/site/apidocs/org/apache/juneau/csv/CsvParser.html +++ b/content/site/apidocs/org/apache/juneau/csv/CsvParser.html @@ -195,8 +195,8 @@ extends <a href="../../../../org/apache/juneau/parser/ReaderParser.html" title=" <tr id="i0" class="altColor"> <td class="colFirst"><code><a href="../../../../org/apache/juneau/csv/CsvParserBuilder.html" title="class in org.apache.juneau.csv">CsvParserBuilder</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/juneau/csv/CsvParser.html#builder--">builder</a></span>()</code> -<div class="block">Creates a new builder class for this object so that a new object can be created - that expands upon the current object's settings.</div> +<div class="block">Creates a new builder class for this object so that a new object can be created that expands upon the current + object's settings.</div> </td> </tr> <tr id="i1" class="rowColor"> @@ -297,8 +297,8 @@ extends <a href="../../../../org/apache/juneau/parser/ReaderParser.html" title=" <h4>builder</h4> <pre>public <a href="../../../../org/apache/juneau/csv/CsvParserBuilder.html" title="class in org.apache.juneau.csv">CsvParserBuilder</a> <a href="../../../../src-html/org/apache/juneau/csv/CsvParser.html#line.39">builder</a>()</pre> <div class="block"><span class="descfrmTypeLabel">Description copied from class: <code><a href="../../../../org/apache/juneau/CoreObject.html#builder--">CoreObject</a></code></span></div> -<div class="block">Creates a new builder class for this object so that a new object can be created - that expands upon the current object's settings.</div> +<div class="block">Creates a new builder class for this object so that a new object can be created that expands upon the current + object's settings.</div> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code><a href="../../../../org/apache/juneau/parser/Parser.html#builder--">builder</a></code> in class <code><a href="../../../../org/apache/juneau/parser/Parser.html" title="class in org.apache.juneau.parser">Parser</a></code></dd> @@ -325,12 +325,12 @@ extends <a href="../../../../org/apache/juneau/parser/ReaderParser.html" title=" <dd><code>T</code> - The class type of the object to create.</dd> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>session</code> - The runtime session object returned by <a href="../../../../org/apache/juneau/parser/Parser.html#createSession-java.lang.Object-org.apache.juneau.ObjectMap-java.lang.reflect.Method-java.lang.Object-java.util.Locale-java.util.TimeZone-org.apache.juneau.http.MediaType-"><code>Parser.createSession(Object, ObjectMap, Method, Object, - Locale, TimeZone, MediaType)</code></a>. - If <jk>null</jk>, one will be created using <a href="../../../../org/apache/juneau/parser/Parser.html#createSession-java.lang.Object-"><code>Parser.createSession(Object)</code></a>.</dd> + Locale, TimeZone, MediaType)</code></a>. + If <jk>null</jk>, one will be created using <a href="../../../../org/apache/juneau/parser/Parser.html#createSession-java.lang.Object-"><code>Parser.createSession(Object)</code></a>.</dd> <dd><code>type</code> - The class type of the object to create. - If <jk>null</jk> or <code>Object.<jk>class</jk></code>, object type is based on what's being parsed. - For example, when parsing JSON text, it may return a <code>String</code>, <code>Number</code>, - <code>ObjectMap</code>, etc...</dd> + If <jk>null</jk> or <code>Object.<jk>class</jk></code>, object type is based on what's being parsed. + For example, when parsing JSON text, it may return a <code>String</code>, <code>Number</code>, + <code>ObjectMap</code>, etc...</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>The parsed object.</dd> <dt><span class="throwsLabel">Throws:</span></dt>
