You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by ja...@apache.org on 2018/01/14 23:07:00 UTC

[17/51] [partial] juneau-website git commit: Update javadocs.

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/internal/DelegateBeanMap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/DelegateBeanMap.html b/content/site/apidocs/org/apache/juneau/internal/DelegateBeanMap.html
index 21e9def..5727a1e 100644
--- a/content/site/apidocs/org/apache/juneau/internal/DelegateBeanMap.html
+++ b/content/site/apidocs/org/apache/juneau/internal/DelegateBeanMap.html
@@ -130,7 +130,7 @@ var activeTableTab = "activeTableTab";
 extends <a href="../../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;T&gt;</pre>
 <div class="block">Represents a wrapped <a href="../../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau"><code>BeanMap</code></a> where property values can be overridden, removed, or reordered without
  affecting the underlying bean.
-
+ 
  <p>
  Provides the <a href="../../../../org/apache/juneau/internal/DelegateBeanMap.html#filterKeys-java.util.List-"><code>filterKeys(List)</code></a> method for specifying the keys to keep in the bean map and in what order
  they should appear.</div>
@@ -355,7 +355,7 @@ extends <a href="../../../../org/apache/juneau/BeanMap.html" title="class in org
                   <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;val)</pre>
 <div class="block"><span class="descfrmTypeLabel">Description copied from class:&nbsp;<code><a href="../../../../org/apache/juneau/BeanMap.html#put-java.lang.String-java.lang.Object-">BeanMap</a></code></span></div>
 <div class="block">Sets a property on the bean.
-
+ 
  <p>
  If there is a <a href="../../../../org/apache/juneau/transform/PojoSwap.html" title="class in org.apache.juneau.transform"><code>PojoSwap</code></a> associated with this bean property or bean property type class, then you must pass
  in a transformed value.
@@ -363,18 +363,18 @@ extends <a href="../../../../org/apache/juneau/BeanMap.html" title="class in org
  <a href="../../../../org/apache/juneau/transforms/DateSwap.ISO8601DT.html" title="class in org.apache.juneau.transforms"><code>DateSwap.ISO8601DT</code></a> swap associated with it through the
  <a href="../../../../org/apache/juneau/annotation/Swap.html#value--"><code>@Swap.value()</code></a> annotation, the value being passed in must be
  a String containing an ISO8601 date-time string value.
-
+ 
  <h5 class='section'>Example:</h5>
  <p class='bcode'>
    <jc>// Construct a bean with a 'birthDate' Date field</jc>
    Person p = <jk>new</jk> Person();
-
+ 
    <jc>// Create a bean context and add the ISO8601 date-time swap</jc>
    BeanContext beanContext = <jk>new</jk> BeanContext().pojoSwaps(DateSwap.ISO8601DT.<jk>class</jk>);
-
+ 
    <jc>// Wrap our bean in a bean map</jc>
    BeanMap&lt;Person&gt; b = beanContext.forBean(p);
-
+ 
    <jc>// Set the field</jc>
    myBeanMap.put(<js>"birthDate"</js>, <js>"'1901-03-03T04:05:06-5000'"</js>);
  </p></div>
@@ -402,7 +402,7 @@ extends <a href="../../../../org/apache/juneau/BeanMap.html" title="class in org
 <pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/DelegateBeanMap.html#line.63">get</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;key)</pre>
 <div class="block"><span class="descfrmTypeLabel">Description copied from class:&nbsp;<code><a href="../../../../org/apache/juneau/BeanMap.html#get-java.lang.Object-">BeanMap</a></code></span></div>
 <div class="block">Gets a property on the bean.
-
+ 
  <p>
  If there is a <a href="../../../../org/apache/juneau/transform/PojoSwap.html" title="class in org.apache.juneau.transform"><code>PojoSwap</code></a> associated with this bean property or bean property type class, then this method
  will return the transformed value.
@@ -410,19 +410,19 @@ extends <a href="../../../../org/apache/juneau/BeanMap.html" title="class in org
  <a href="../../../../org/apache/juneau/transforms/DateSwap.ISO8601DT.html" title="class in org.apache.juneau.transforms"><code>DateSwap.ISO8601DT</code></a> swap associated with it through the
  <a href="../../../../org/apache/juneau/annotation/Swap.html#value--"><code>@Swap.value()</code></a> annotation, this method will return a String containing an
  ISO8601 date-time string value.
-
+ 
  <h5 class='section'>Example:</h5>
  <p class='bcode'>
    <jc>// Construct a bean with a 'birthDate' Date field</jc>
    Person p = <jk>new</jk> Person();
    p.setBirthDate(<jk>new</jk> Date(1, 2, 3, 4, 5, 6));
-
+ 
    <jc>// Create a bean context and add the ISO8601 date-time swap</jc>
    BeanContext beanContext = <jk>new</jk> BeanContext().pojoSwaps(DateSwap.ISO8601DT.<jk>class</jk>);
-
+ 
    <jc>// Wrap our bean in a bean map</jc>
    BeanMap&lt;Person&gt; b = beanContext.forBean(p);
-
+ 
    <jc>// Get the field as a string (i.e. "'1901-03-03T04:05:06-5000'")</jc>
    String s = myBeanMap.get(<js>"birthDate"</js>);
  </p></div>
@@ -445,7 +445,7 @@ extends <a href="../../../../org/apache/juneau/BeanMap.html" title="class in org
 <pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<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>&gt;&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/DelegateBeanMap.html#line.70">keySet</a>()</pre>
 <div class="block"><span class="descfrmTypeLabel">Description copied from class:&nbsp;<code><a href="../../../../org/apache/juneau/BeanMap.html#keySet--">BeanMap</a></code></span></div>
 <div class="block">Returns the names of all properties associated with the bean.
-
+ 
  <p>
  The returned set is unmodifiable.</div>
 <dl>
@@ -464,7 +464,7 @@ extends <a href="../../../../org/apache/juneau/BeanMap.html" title="class in org
 <h4>filterKeys</h4>
 <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/DelegateBeanMap.html#line.82">filterKeys</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<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>&gt;&nbsp;keys)</pre>
 <div class="block">Remove all but the specified properties from this bean map.
-
+ 
  <p>
  This does not affect the underlying bean.</div>
 <dl>

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/internal/DelegateMap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/DelegateMap.html b/content/site/apidocs/org/apache/juneau/internal/DelegateMap.html
index 5b34010..41b230f 100644
--- a/content/site/apidocs/org/apache/juneau/internal/DelegateMap.html
+++ b/content/site/apidocs/org/apache/juneau/internal/DelegateMap.html
@@ -327,7 +327,7 @@ implements <a href="../../../../org/apache/juneau/Delegate.html" title="interfac
 <h4>filterKeys</h4>
 <pre>public&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/DelegateMap.html#line.51">filterKeys</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<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>&gt;&nbsp;keys)</pre>
 <div class="block">Remove all but the specified keys from this map.
-
+ 
  <p>
  This does not affect the underlying map.</div>
 <dl>

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/internal/FileUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/FileUtils.html b/content/site/apidocs/org/apache/juneau/internal/FileUtils.html
index b66b3b2..0765a67 100644
--- a/content/site/apidocs/org/apache/juneau/internal/FileUtils.html
+++ b/content/site/apidocs/org/apache/juneau/internal/FileUtils.html
@@ -297,7 +297,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <h4>create</h4>
 <pre>public static&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/FileUtils.html#line.87">create</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</a>&nbsp;f)</pre>
 <div class="block">Creates a file if it doesn't already exist using <a href="http://docs.oracle.com/javase/7/docs/api/java/io/File.html?is-external=true#createNewFile--" title="class or interface in java.io"><code>File.createNewFile()</code></a>.
-
+ 
  <p>
  Throws a <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/RuntimeException.html?is-external=true" title="class or interface in java.lang"><code>RuntimeException</code></a> if the file could not be created.</div>
 <dl>
@@ -314,7 +314,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <h4>modifyTimestamp</h4>
 <pre>public static&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/FileUtils.html#line.106">modifyTimestamp</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</a>&nbsp;f)</pre>
 <div class="block">Updates the modified timestamp on the specified file.
-
+ 
  <p>
  Method ensures that the timestamp changes even if it's been modified within the past millisecond.</div>
 <dl>
@@ -332,11 +332,11 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <pre>public static&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</a>&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/FileUtils.html#line.136">createTempFile</a>(<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>&nbsp;name)
                            throws <a href="http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre>
 <div class="block">Create a temporary file with the specified name.
-
+ 
  <p>
  The name is broken into file name and suffix, and the parts are passed to
  <a href="http://docs.oracle.com/javase/7/docs/api/java/io/File.html?is-external=true#createTempFile-java.lang.String-java.lang.String-" title="class or interface in java.io"><code>File.createTempFile(String, String)</code></a>.
-
+ 
  <p>
  <a href="http://docs.oracle.com/javase/7/docs/api/java/io/File.html?is-external=true#deleteOnExit--" title="class or interface in java.io"><code>File.deleteOnExit()</code></a> is called on the resulting file before being returned by this method.</div>
 <dl>

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/internal/HashCode.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/HashCode.html b/content/site/apidocs/org/apache/juneau/internal/HashCode.html
index 5ff6c7a..48076e2 100644
--- a/content/site/apidocs/org/apache/juneau/internal/HashCode.html
+++ b/content/site/apidocs/org/apache/juneau/internal/HashCode.html
@@ -111,7 +111,7 @@ var activeTableTab = "activeTableTab";
 <pre>public class <a href="../../../../src-html/org/apache/juneau/internal/HashCode.html#line.24">HashCode</a>
 extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
 <div class="block">Utility class for generating integer hash codes.
-
+ 
  <p>
  General usage:
  <p class='bcode'>
@@ -259,7 +259,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <h4>add</h4>
 <pre>public&nbsp;<a href="../../../../org/apache/juneau/internal/HashCode.html" title="class in org.apache.juneau.internal">HashCode</a>&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/HashCode.html#line.58">add</a>(int&nbsp;i)</pre>
 <div class="block">Hashes the hashcode into this object.
-
+ 
  <p>
  The formula is simply <code>hashCode = 31*hashCode + i;</code></div>
 <dl>
@@ -292,11 +292,11 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <h4>unswap</h4>
 <pre>protected&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/HashCode.html#line.85">unswap</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;o)</pre>
 <div class="block">Converts the object to a normalized form before grabbing it's hashcode.
-
+ 
  <p>
  Subclasses can override this method to provide specialized handling (e.g. converting numbers to strings so that
  <code>123</code> and <js>"123"</js> end up creating the same hashcode.)
-
+ 
  <p>
  Default implementation does nothing.</div>
 <dl>

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/internal/IOUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/IOUtils.html b/content/site/apidocs/org/apache/juneau/internal/IOUtils.html
index a156399..38dd3aa 100644
--- a/content/site/apidocs/org/apache/juneau/internal/IOUtils.html
+++ b/content/site/apidocs/org/apache/juneau/internal/IOUtils.html
@@ -449,7 +449,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <pre>public static&nbsp;<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>&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/IOUtils.html#line.74">read</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;o)
                    throws <a href="http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre>
 <div class="block">Reads the specified object to a <code>String</code>.
-
+ 
  <p>
  Can be any of the following object types:
  <ul>
@@ -621,10 +621,10 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
                           int&nbsp;bufferSize)
                    throws <a href="http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre>
 <div class="block">Reads the specified input into a <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang"><code>String</code></a> until the end of the input is reached.
-
+ 
  <p>
  The <code>Reader</code> is automatically closed.
-
+ 
  <p>
  If the <code>Reader</code> is not an instance of a <code>BufferedReader</code>, then it gets wrapped in a
  <code>BufferedReader</code>.</div>
@@ -650,7 +650,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
                         <a href="http://docs.oracle.com/javase/7/docs/api/java/io/Writer.html?is-external=true" title="class or interface in java.io">Writer</a>&nbsp;out)
                  throws <a href="http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre>
 <div class="block">Pipes the contents of the specified reader into the writer.
-
+ 
  <p>
  The reader is closed, the writer is not.</div>
 <dl>
@@ -672,7 +672,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
                         <a href="http://docs.oracle.com/javase/7/docs/api/java/io/Writer.html?is-external=true" title="class or interface in java.io">Writer</a>&nbsp;out)
                  throws <a href="http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre>
 <div class="block">Pipes the contents of the specified object into the writer.
-
+ 
  <p>
  The reader is closed, the writer is not.</div>
 <dl>
@@ -695,7 +695,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
                         <a href="http://docs.oracle.com/javase/7/docs/api/java/io/OutputStream.html?is-external=true" title="class or interface in java.io">OutputStream</a>&nbsp;out)
                  throws <a href="http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre>
 <div class="block">Pipes the contents of the specified streams.
-
+ 
  <p>
  The input stream is closed, the output stream is not.</div>
 <dl>
@@ -717,7 +717,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
                         <a href="http://docs.oracle.com/javase/7/docs/api/java/io/OutputStream.html?is-external=true" title="class or interface in java.io">OutputStream</a>&nbsp;out)
                  throws <a href="http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre>
 <div class="block">Pipes the contents of the specified object into the output stream.
-
+ 
  <p>
  The input stream is closed, the output stream is not.</div>
 <dl>
@@ -793,7 +793,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <h4>getBufferSize</h4>
 <pre>public static&nbsp;int&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/IOUtils.html#line.365">getBufferSize</a>(<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>&nbsp;contentLength)</pre>
 <div class="block">Given the specified <js>"Content-Length"</js> header value, return an appropriate buffer size.
-
+ 
  <p>
  The maximum buffer size is 1MB.</div>
 <dl>
@@ -812,7 +812,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <h4>closeQuietly</h4>
 <pre>public static&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/IOUtils.html#line.389">closeQuietly</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io">InputStream</a>&nbsp;is)</pre>
 <div class="block">Close input stream and ignore any exceptions.
-
+ 
  <p>
  No-op if input stream is <jk>null</jk>.</div>
 <dl>
@@ -829,7 +829,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <h4>closeQuietly</h4>
 <pre>public static&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/IOUtils.html#line.404">closeQuietly</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/io/OutputStream.html?is-external=true" title="class or interface in java.io">OutputStream</a>&nbsp;os)</pre>
 <div class="block">Close output stream and ignore any exceptions.
-
+ 
  <p>
  No-op if output stream is <jk>null</jk>.</div>
 <dl>
@@ -846,7 +846,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <h4>closeQuietly</h4>
 <pre>public static&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/IOUtils.html#line.419">closeQuietly</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/io/Reader.html?is-external=true" title="class or interface in java.io">Reader</a>&nbsp;r)</pre>
 <div class="block">Close reader and ignore any exceptions.
-
+ 
  <p>
  No-op if reader is <jk>null</jk>.</div>
 <dl>
@@ -863,7 +863,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <h4>closeQuietly</h4>
 <pre>public static&nbsp;void&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/IOUtils.html#line.434">closeQuietly</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/io/Writer.html?is-external=true" title="class or interface in java.io">Writer</a>&nbsp;w)</pre>
 <div class="block">Close writer and ignore any exceptions.
-
+ 
  <p>
  No-op if writer is <jk>null</jk>.</div>
 <dl>

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/internal/IdentityList.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/IdentityList.html b/content/site/apidocs/org/apache/juneau/internal/IdentityList.html
index 5e27802..2de96d4 100644
--- a/content/site/apidocs/org/apache/juneau/internal/IdentityList.html
+++ b/content/site/apidocs/org/apache/juneau/internal/IdentityList.html
@@ -136,18 +136,19 @@ var activeTableTab = "activeTableTab";
 </dl>
 <hr>
 <br>
-<pre>public class <a href="../../../../src-html/org/apache/juneau/internal/IdentityList.html#line.34">IdentityList</a>&lt;T&gt;
+<pre>public class <a href="../../../../src-html/org/apache/juneau/internal/IdentityList.html#line.35">IdentityList</a>&lt;T&gt;
 extends <a href="http://docs.oracle.com/javase/7/docs/api/java/util/LinkedList.html?is-external=true" title="class or interface in java.util">LinkedList</a>&lt;T&gt;</pre>
 <div class="block">Combination of a <a href="http://docs.oracle.com/javase/7/docs/api/java/util/LinkedList.html?is-external=true" title="class or interface in java.util"><code>LinkedList</code></a> and <code>IdentitySet</code>.
-
+ 
  <ul class='spaced-list'>
    <li>
       Duplicate objects (by identity) will be skipped during insertion.
    <li>
       Order of insertion maintained.
  </ul>
-
- <h5 class='section'>Notes:</h5>
+ 
+ 
+ <h5 class='topic'>Notes</h5>
  <ul>
    <li>This class is NOT thread safe, and is intended for use on small lists.
  </ul></div>
@@ -297,7 +298,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/util/LinkedList.h
 <ul class="blockListLast">
 <li class="blockList">
 <h4>IdentityList</h4>
-<pre>public&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/IdentityList.html#line.34">IdentityList</a>()</pre>
+<pre>public&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/IdentityList.html#line.35">IdentityList</a>()</pre>
 </li>
 </ul>
 </li>
@@ -316,7 +317,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/util/LinkedList.h
 <ul class="blockList">
 <li class="blockList">
 <h4>add</h4>
-<pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/IdentityList.html#line.39">add</a>(<a href="../../../../org/apache/juneau/internal/IdentityList.html" title="type parameter in IdentityList">T</a>&nbsp;t)</pre>
+<pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/IdentityList.html#line.40">add</a>(<a href="../../../../org/apache/juneau/internal/IdentityList.html" title="type parameter in IdentityList">T</a>&nbsp;t)</pre>
 <dl>
 <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
 <dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true#add-E-" title="class or interface in java.util">add</a></code>&nbsp;in interface&nbsp;<code><a href="http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="../../../../org/apache/juneau/internal/IdentityList.html" title="type parameter in IdentityList">T</a>&gt;</code></dd>
@@ -337,7 +338,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/util/LinkedList.h
 <ul class="blockListLast">
 <li class="blockList">
 <h4>contains</h4>
-<pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/IdentityList.html#line.48">contains</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;t)</pre>
+<pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/IdentityList.html#line.49">contains</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;t)</pre>
 <dl>
 <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
 <dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true#contains-java.lang.Object-" title="class or interface in java.util">contains</a></code>&nbsp;in interface&nbsp;<code><a href="http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="../../../../org/apache/juneau/internal/IdentityList.html" title="type parameter in IdentityList">T</a>&gt;</code></dd>

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/internal/JuneauLogger.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/JuneauLogger.html b/content/site/apidocs/org/apache/juneau/internal/JuneauLogger.html
index 7daa45e..17ff1c0 100644
--- a/content/site/apidocs/org/apache/juneau/internal/JuneauLogger.html
+++ b/content/site/apidocs/org/apache/juneau/internal/JuneauLogger.html
@@ -398,7 +398,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/util/logging/Logg
 <dd><code>resourceBundleName</code> - The name of the resource bundle.
    Can be any of the following formats:
    <ol>
-         <li>An absolute path.  E.g. <js>"com/foo/nls/Messages"</js>.
+      <li>An absolute path.  E.g. <js>"com/foo/nls/Messages"</js>.
       <li>A path relative to the package of the class.  E.g. <js>"nls/Messages"</js>.
    </ol>
    Both <js>'.'</js> and <js>'/'</js> can be used as path delimiters.</dd>
@@ -638,7 +638,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/util/logging/Logg
                        <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;args)</pre>
 <div class="block">Similar to <a href="http://docs.oracle.com/javase/7/docs/api/java/util/logging/Logger.html?is-external=true#log-java.util.logging.Level-java.lang.String-java.lang.Object:A-" title="class or interface in java.util.logging"><code>Logger.log(Level, String, Object[])</code></a>, except arguments are converted to objects
  that are serialized using the <a href="../../../../org/apache/juneau/serializer/WriterSerializer.html#toStringObject-java.lang.Object-"><code>WriterSerializer.toStringObject(Object)</code></a> method.
-
+ 
  <p>
  This allows arbitrary POJOs to be serialized as message parameters.</div>
 <dl>

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/internal/ObjectUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/ObjectUtils.html b/content/site/apidocs/org/apache/juneau/internal/ObjectUtils.html
index f792a8c..29cec92 100644
--- a/content/site/apidocs/org/apache/juneau/internal/ObjectUtils.html
+++ b/content/site/apidocs/org/apache/juneau/internal/ObjectUtils.html
@@ -111,10 +111,10 @@ var activeTableTab = "activeTableTab";
 <pre>public final class <a href="../../../../src-html/org/apache/juneau/internal/ObjectUtils.html#line.150">ObjectUtils</a>
 extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
 <div class="block">Utility class for efficiently converting objects between types.
-
+ 
  <p>
  If the value isn't an instance of the specified type, then converts the value if possible.
-
+ 
  <p>
  The following conversions are valid:
  <table class='styled'>
@@ -401,7 +401,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <pre>public static&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/ObjectUtils.html#line.195">equals</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;o1,
                              <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;o2)</pre>
 <div class="block">Returns <jk>true</jk> if the specified objects are equal.
-
+ 
  <p>
  Gracefully handles <jk>null</jk>s.</div>
 <dl>
@@ -421,7 +421,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <h4>isEmpty</h4>
 <pre>public static&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/ObjectUtils.html#line.221">isEmpty</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;o)</pre>
 <div class="block">Returns <jk>true</jk> if the specified object is empty.
-
+ 
  <p>
  Return <jk>true</jk> if the value is any of the following:
  <ul>

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/internal/ReflectionUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/ReflectionUtils.html b/content/site/apidocs/org/apache/juneau/internal/ReflectionUtils.html
index 9b13cdf..dca620f 100644
--- a/content/site/apidocs/org/apache/juneau/internal/ReflectionUtils.html
+++ b/content/site/apidocs/org/apache/juneau/internal/ReflectionUtils.html
@@ -274,7 +274,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <pre>public static&nbsp;&lt;T extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Annotation.html?is-external=true" title="class or interface in java.lang.annotation">Annotation</a>&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/ReflectionUtils.html#line.67">getDeclaredAnnotation</a>(<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>&lt;T&gt;&nbsp;a,
                                                              <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>&lt;?&gt;&nbsp;c)</pre>
 <div class="block">Returns the specified annotation only if it's been declared on the specified class.
-
+ 
  <p>
  More efficient than calling <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true#getAnnotation-java.lang.Class-" title="class or interface in java.lang"><code>Class.getAnnotation(Class)</code></a> since it doesn't recursively look for the class
  up the parent chain.</div>
@@ -298,7 +298,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <pre>public static&nbsp;&lt;T extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Annotation.html?is-external=true" title="class or interface in java.lang.annotation">Annotation</a>&gt;&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;T&gt;&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/ReflectionUtils.html#line.86">findAnnotations</a>(<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>&lt;T&gt;&nbsp;a,
                                                              <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>&lt;?&gt;&nbsp;c)</pre>
 <div class="block">Returns all instances of the specified annotation on the specified class.
-
+ 
  <p>
  Searches all superclasses and superinterfaces.
  Results are ordered child-to-parent.</div>
@@ -341,7 +341,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
                                                                                   <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>&lt;?&gt;&nbsp;c)</pre>
 <div class="block">Same as <a href="../../../../org/apache/juneau/internal/ReflectionUtils.html#findAnnotations-java.lang.Class-java.lang.Class-"><code>findAnnotations(Class, Class)</code></a> except returns the annotations as a map with the keys being the
  class on which the annotation was found.
-
+ 
  <p>
  Results are ordered child-to-parent.</div>
 <dl>

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/internal/SimpleMap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/SimpleMap.html b/content/site/apidocs/org/apache/juneau/internal/SimpleMap.html
index 0254b80..f561777 100644
--- a/content/site/apidocs/org/apache/juneau/internal/SimpleMap.html
+++ b/content/site/apidocs/org/apache/juneau/internal/SimpleMap.html
@@ -121,13 +121,13 @@ var activeTableTab = "activeTableTab";
 extends <a href="http://docs.oracle.com/javase/7/docs/api/java/util/AbstractMap.html?is-external=true" title="class or interface in java.util">AbstractMap</a>&lt;<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="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;</pre>
 <div class="block">An instance of a <code>Map</code> where the keys and values are simple <code>String[]</code> and
  <code>Object[]</code> arrays.
-
+ 
  <p>
  Typically more efficient than <code>HashMaps</code> for small maps (e.g. &lt;10 entries).
-
+ 
  <p>
  Does not support adding or removing entries.
-
+ 
  <p>
  Setting values overwrites the value on the underlying value array.</div>
 </li>

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/internal/StringBuilderWriter.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/StringBuilderWriter.html b/content/site/apidocs/org/apache/juneau/internal/StringBuilderWriter.html
index 7072900..7e0d77c 100644
--- a/content/site/apidocs/org/apache/juneau/internal/StringBuilderWriter.html
+++ b/content/site/apidocs/org/apache/juneau/internal/StringBuilderWriter.html
@@ -120,7 +120,7 @@ var activeTableTab = "activeTableTab";
 <pre>public final class <a href="../../../../src-html/org/apache/juneau/internal/StringBuilderWriter.html#line.23">StringBuilderWriter</a>
 extends <a href="http://docs.oracle.com/javase/7/docs/api/java/io/Writer.html?is-external=true" title="class or interface in java.io">Writer</a></pre>
 <div class="block">Similar to <a href="http://docs.oracle.com/javase/7/docs/api/java/io/StringWriter.html?is-external=true" title="class or interface in java.io"><code>StringWriter</code></a>, but uses a <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/StringBuilder.html?is-external=true" title="class or interface in java.lang"><code>StringBuilder</code></a> instead to avoid synchronization overhead.
-
+ 
  <p>
  Note that this class is NOT thread safe.</div>
 </li>

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/internal/StringUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/StringUtils.html b/content/site/apidocs/org/apache/juneau/internal/StringUtils.html
index de00e9c..7769c32 100644
--- a/content/site/apidocs/org/apache/juneau/internal/StringUtils.html
+++ b/content/site/apidocs/org/apache/juneau/internal/StringUtils.html
@@ -1028,11 +1028,11 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <pre>public static&nbsp;<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>[]&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/StringUtils.html#line.495">split</a>(<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>&nbsp;s,
                              char&nbsp;c)</pre>
 <div class="block">Splits a character-delimited string into a string array.
-
+ 
  <p>
  Does not split on escaped-delimiters (e.g. "\,");
  Resulting tokens are trimmed of whitespace.
-
+ 
  <p>
  <b>NOTE:</b>  This behavior is different than the Jakarta equivalent.
  split("a,b,c",',') -> {"a","b","c"}
@@ -1102,7 +1102,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
                                           char&nbsp;eq,
                                           boolean&nbsp;trim)</pre>
 <div class="block">Splits a list of key-value pairs into an ordered map.
-
+ 
  <p>
  Example:
  <p class='bcode'>
@@ -1446,10 +1446,10 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <h4>generateUUID</h4>
 <pre>public static&nbsp;<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>&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/StringUtils.html#line.1066">generateUUID</a>(int&nbsp;numchars)</pre>
 <div class="block">Generated a random UUID with the specified number of characters.
-
+ 
  <p>
  Characters are composed of lower-case ASCII letters and numbers only.
-
+ 
  <p>
  This method conforms to the restrictions for hostnames as specified in <a class="doclink"
  href="https://tools.ietf.org/html/rfc952">RFC 952</a>
@@ -1458,7 +1458,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
  <code>sqrt(36^N)</code>.
  Dividing this number by 10 gives you an approximation of the number of generated IDs needed to produce a
  &lt;1% chance of collision.
-
+ 
  <p>
  For example, given 5 characters, the number of generated IDs need to produce a &lt;1% chance of collision would
  be:
@@ -1515,13 +1515,13 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <pre>public static&nbsp;<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>&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/StringUtils.html#line.1133">replaceVars</a>(<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>&nbsp;s,
                                  <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<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="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;m)</pre>
 <div class="block">Simple utility for replacing variables of the form <js>"{key}"</js> with values in the specified map.
-
+ 
  <p>
  Nested variables are supported in both the input string and map values.
-
+ 
  <p>
  If the map does not contain the specified value, the variable is not replaced.
-
+ 
  <p>
  <jk>null</jk> values in the map are treated as blank strings.</div>
 <dl>
@@ -1542,7 +1542,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <pre>public static&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/StringUtils.html#line.1205">pathStartsWith</a>(<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>&nbsp;path,
                                      <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>&nbsp;pathPrefix)</pre>
 <div class="block">Returns <jk>true</jk> if the specified path string is prefixed with the specified prefix.
-
+ 
  <h5 class='section'>Example:</h5>
  <p class='bcode'>
    pathStartsWith(<js>"foo"</js>, <js>"foo"</js>);  <jc>// true</jc>
@@ -1603,7 +1603,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
                               <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>&nbsp;s,
                               char&nbsp;delim)</pre>
 <div class="block">Returns the specified field in a delimited string without splitting the string.
-
+ 
  <p>
  Equivalent to the following:
  <p class='bcode'>
@@ -1981,10 +1981,10 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <h4>isUri</h4>
 <pre>public static&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/StringUtils.html#line.1652">isUri</a>(<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>&nbsp;s)</pre>
 <div class="block">Efficiently determines whether a URL is of the pattern "xxx:/xxx".
-
+ 
  <p>
  The pattern matched is: <code>[a-z]{2,}\:\/.*</code>
-
+ 
  <p>
  Note that this excludes filesystem paths such as <js>"C:/temp"</js>.</div>
 <dl>

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/internal/Version.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/Version.html b/content/site/apidocs/org/apache/juneau/internal/Version.html
index ef7c891..96203c5 100644
--- a/content/site/apidocs/org/apache/juneau/internal/Version.html
+++ b/content/site/apidocs/org/apache/juneau/internal/Version.html
@@ -111,7 +111,7 @@ var activeTableTab = "activeTableTab";
 <pre>public class <a href="../../../../src-html/org/apache/juneau/internal/Version.html#line.23">Version</a>
 extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
 <div class="block">Represents a version string such as <js>"1.2"</js> or <js>"1.2.3"</js>
-
+ 
  <p>
  Used to compare version numbers.</div>
 </li>
@@ -236,7 +236,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/Version.html#line.70">isAtLeast</a>(<a href="../../../../org/apache/juneau/internal/Version.html" title="class in org.apache.juneau.internal">Version</a>&nbsp;v,
                          boolean&nbsp;exclusive)</pre>
 <div class="block">Returns <jk>true</jk> if the specified version is at least this version.
-
+ 
  <p>
  Note that the following is true:
  <p class='bcode'>
@@ -262,7 +262,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/Version.html#line.99">isAtMost</a>(<a href="../../../../org/apache/juneau/internal/Version.html" title="class in org.apache.juneau.internal">Version</a>&nbsp;v,
                         boolean&nbsp;exclusive)</pre>
 <div class="block">Returns <jk>true</jk> if the specified version is at most this version.
-
+ 
  <p>
  Note that the following is true:
  <p class='bcode'>
@@ -287,7 +287,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <h4>isEqualsTo</h4>
 <pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/juneau/internal/Version.html#line.127">isEqualsTo</a>(<a href="../../../../org/apache/juneau/internal/Version.html" title="class in org.apache.juneau.internal">Version</a>&nbsp;v)</pre>
 <div class="block">Returns <jk>true</jk> if the specified version is equal to this version.
-
+ 
  <p>
  Note that the following is true:
  <p class='bcode'>

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/internal/VersionRange.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/VersionRange.html b/content/site/apidocs/org/apache/juneau/internal/VersionRange.html
index 80d41f8..86e8322 100644
--- a/content/site/apidocs/org/apache/juneau/internal/VersionRange.html
+++ b/content/site/apidocs/org/apache/juneau/internal/VersionRange.html
@@ -111,7 +111,7 @@ var activeTableTab = "activeTableTab";
 <pre>public class <a href="../../../../src-html/org/apache/juneau/internal/VersionRange.html#line.26">VersionRange</a>
 extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
 <div class="block">Represents an OSGi-style version range like <js>"1.2"</js> or <js>"[1.0,2.0)"</js>.
-
+ 
  <p>
  The range can be any of the following formats:
  <ul>

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/jena/RdfBeanMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfBeanMeta.html b/content/site/apidocs/org/apache/juneau/jena/RdfBeanMeta.html
index 02458a8..9131980 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfBeanMeta.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfBeanMeta.html
@@ -157,13 +157,13 @@ extends <a href="../../../../org/apache/juneau/BeanMetaExtended.html" title="cla
 <tr id="i0" class="altColor">
 <td class="colFirst"><code><a href="../../../../org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/juneau/jena/RdfBeanMeta.html#getBeanUriProperty--">getBeanUriProperty</a></span>()</code>
-<div class="block">Returns the bean property marked as the URI for the bean (annotated with <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#beanUri--"><code>Rdf.beanUri()</code></a> as <jk>true</jk>).</div>
+<div class="block">Returns the bean property marked as the URI for the bean (annotated with <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#beanUri--"><code>@Rdf.beanUri()</code></a> as <jk>true</jk>).</div>
 </td>
 </tr>
 <tr id="i1" class="rowColor">
 <td class="colFirst"><code>boolean</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/juneau/jena/RdfBeanMeta.html#hasBeanUri--">hasBeanUri</a></span>()</code>
-<div class="block">Returns <jk>true</jk> if one of the properties on this bean is annotated with <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#beanUri--"><code>Rdf.beanUri()</code></a> as 
+<div class="block">Returns <jk>true</jk> if one of the properties on this bean is annotated with <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#beanUri--"><code>@Rdf.beanUri()</code></a> as 
  <jk>true</jk></div>
 </td>
 </tr>
@@ -225,7 +225,7 @@ extends <a href="../../../../org/apache/juneau/BeanMetaExtended.html" title="cla
 <li class="blockList">
 <h4>hasBeanUri</h4>
 <pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/juneau/jena/RdfBeanMeta.html#line.51">hasBeanUri</a>()</pre>
-<div class="block">Returns <jk>true</jk> if one of the properties on this bean is annotated with <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#beanUri--"><code>Rdf.beanUri()</code></a> as 
+<div class="block">Returns <jk>true</jk> if one of the properties on this bean is annotated with <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#beanUri--"><code>@Rdf.beanUri()</code></a> as 
  <jk>true</jk></div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -240,7 +240,7 @@ extends <a href="../../../../org/apache/juneau/BeanMetaExtended.html" title="cla
 <li class="blockList">
 <h4>getBeanUriProperty</h4>
 <pre>public&nbsp;<a href="../../../../org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&nbsp;<a href="../../../../src-html/org/apache/juneau/jena/RdfBeanMeta.html#line.60">getBeanUriProperty</a>()</pre>
-<div class="block">Returns the bean property marked as the URI for the bean (annotated with <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#beanUri--"><code>Rdf.beanUri()</code></a> as <jk>true</jk>).</div>
+<div class="block">Returns the bean property marked as the URI for the bean (annotated with <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#beanUri--"><code>@Rdf.beanUri()</code></a> as <jk>true</jk>).</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
 <dd>The URI property, or <jk>null</jk> if no URI property exists on this bean.</dd>

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/jena/RdfBeanPropertyMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfBeanPropertyMeta.html b/content/site/apidocs/org/apache/juneau/jena/RdfBeanPropertyMeta.html
index e45a4f7..6dfb862 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfBeanPropertyMeta.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfBeanPropertyMeta.html
@@ -170,7 +170,7 @@ extends <a href="../../../../org/apache/juneau/BeanPropertyMetaExtended.html" ti
 <tr id="i2" class="altColor">
 <td class="colFirst"><code>boolean</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/juneau/jena/RdfBeanPropertyMeta.html#isBeanUri--">isBeanUri</a></span>()</code>
-<div class="block">Returns <jk>true</jk> if this bean property is marked with <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#beanUri--"><code>Rdf.beanUri()</code></a> as <jk>true</jk>.</div>
+<div class="block">Returns <jk>true</jk> if this bean property is marked with <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#beanUri--"><code>@Rdf.beanUri()</code></a> as <jk>true</jk>.</div>
 </td>
 </tr>
 </table>
@@ -249,17 +249,17 @@ extends <a href="../../../../org/apache/juneau/BeanPropertyMetaExtended.html" ti
 <div class="block">Returns the RDF namespace associated with this bean property.
  
  <p>
- Namespace is determined in the following order:
+ Namespace is determined in the following order of <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#prefix--"><code>@Rdf.prefix()</code></a> annotations:
  <ol>
-   <li><a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#prefix--"><code>Rdf.prefix()</code></a> annotation defined on bean property field.
-   <li><a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#prefix--"><code>Rdf.prefix()</code></a> annotation defined on bean getter.
-   <li><a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#prefix--"><code>Rdf.prefix()</code></a> annotation defined on bean setter.
-   <li><a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#prefix--"><code>Rdf.prefix()</code></a> annotation defined on bean.
-   <li><a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#prefix--"><code>Rdf.prefix()</code></a> annotation defined on bean package.
-   <li><a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#prefix--"><code>Rdf.prefix()</code></a> annotation defined on bean superclasses.
-   <li><a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#prefix--"><code>Rdf.prefix()</code></a> annotation defined on bean superclass packages.
-   <li><a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#prefix--"><code>Rdf.prefix()</code></a> annotation defined on bean interfaces.
-   <li><a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#prefix--"><code>Rdf.prefix()</code></a> annotation defined on bean interface packages.
+   <li>Bean property field.
+   <li>Bean getter.
+   <li>Bean setter.
+   <li>Bean class.
+   <li>Bean package.
+   <li>Bean superclasses.
+   <li>Bean superclass packages.
+   <li>Bean interfaces.
+   <li>Bean interface packages.
  </ol></div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -274,10 +274,10 @@ extends <a href="../../../../org/apache/juneau/BeanPropertyMetaExtended.html" ti
 <li class="blockList">
 <h4>isBeanUri</h4>
 <pre>public&nbsp;boolean&nbsp;<a href="../../../../src-html/org/apache/juneau/jena/RdfBeanPropertyMeta.html#line.92">isBeanUri</a>()</pre>
-<div class="block">Returns <jk>true</jk> if this bean property is marked with <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#beanUri--"><code>Rdf.beanUri()</code></a> as <jk>true</jk>.</div>
+<div class="block">Returns <jk>true</jk> if this bean property is marked with <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#beanUri--"><code>@Rdf.beanUri()</code></a> as <jk>true</jk>.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
-<dd><jk>true</jk> if this bean property is marked with <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#beanUri--"><code>Rdf.beanUri()</code></a> as <jk>true</jk>.</dd>
+<dd><jk>true</jk> if this bean property annotation is <jk>true</jk>.</dd>
 </dl>
 </li>
 </ul>

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/jena/RdfClassMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfClassMeta.html b/content/site/apidocs/org/apache/juneau/jena/RdfClassMeta.html
index e642c0e..0feb716 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfClassMeta.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfClassMeta.html
@@ -157,13 +157,13 @@ extends <a href="../../../../org/apache/juneau/ClassMetaExtended.html" title="cl
 <tr id="i0" class="altColor">
 <td class="colFirst"><code>protected <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html" title="annotation in org.apache.juneau.jena.annotation">Rdf</a></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/juneau/jena/RdfClassMeta.html#getAnnotation--">getAnnotation</a></span>()</code>
-<div class="block">Returns the <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html" title="annotation in org.apache.juneau.jena.annotation"><code>Rdf</code></a> annotation defined on the class.</div>
+<div class="block">Returns the <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html" title="annotation in org.apache.juneau.jena.annotation"><code>@Rdf</code></a> annotation defined on the class.</div>
 </td>
 </tr>
 <tr id="i1" class="rowColor">
 <td class="colFirst"><code>protected <a href="../../../../org/apache/juneau/jena/RdfCollectionFormat.html" title="enum in org.apache.juneau.jena">RdfCollectionFormat</a></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/juneau/jena/RdfClassMeta.html#getCollectionFormat--">getCollectionFormat</a></span>()</code>
-<div class="block">Returns the <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#collectionFormat--"><code>Rdf.collectionFormat()</code></a> annotation defined on the class.</div>
+<div class="block">Returns the <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#collectionFormat--"><code>@Rdf.collectionFormat()</code></a> annotation defined on the class.</div>
 </td>
 </tr>
 <tr id="i2" class="altColor">
@@ -230,10 +230,10 @@ extends <a href="../../../../org/apache/juneau/ClassMetaExtended.html" title="cl
 <li class="blockList">
 <h4>getAnnotation</h4>
 <pre>protected&nbsp;<a href="../../../../org/apache/juneau/jena/annotation/Rdf.html" title="annotation in org.apache.juneau.jena.annotation">Rdf</a>&nbsp;<a href="../../../../src-html/org/apache/juneau/jena/RdfClassMeta.html#line.56">getAnnotation</a>()</pre>
-<div class="block">Returns the <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html" title="annotation in org.apache.juneau.jena.annotation"><code>Rdf</code></a> annotation defined on the class.</div>
+<div class="block">Returns the <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html" title="annotation in org.apache.juneau.jena.annotation"><code>@Rdf</code></a> annotation defined on the class.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
-<dd>The value of the <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html" title="annotation in org.apache.juneau.jena.annotation"><code>Rdf</code></a> annotation, or <jk>null</jk> if annotation is not specified.</dd>
+<dd>The value of the annotation, or <jk>null</jk> if annotation is not specified.</dd>
 </dl>
 </li>
 </ul>
@@ -244,10 +244,10 @@ extends <a href="../../../../org/apache/juneau/ClassMetaExtended.html" title="cl
 <li class="blockList">
 <h4>getCollectionFormat</h4>
 <pre>protected&nbsp;<a href="../../../../org/apache/juneau/jena/RdfCollectionFormat.html" title="enum in org.apache.juneau.jena">RdfCollectionFormat</a>&nbsp;<a href="../../../../src-html/org/apache/juneau/jena/RdfClassMeta.html#line.66">getCollectionFormat</a>()</pre>
-<div class="block">Returns the <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#collectionFormat--"><code>Rdf.collectionFormat()</code></a> annotation defined on the class.</div>
+<div class="block">Returns the <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#collectionFormat--"><code>@Rdf.collectionFormat()</code></a> annotation defined on the class.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
-<dd>The value of the <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#collectionFormat--"><code>Rdf.collectionFormat()</code></a> annotation, or <jk>null</jk> if annotation is not 
+<dd>The value of the annotation, or <jk>null</jk> if annotation is not 
  specified.</dd>
 </dl>
 </li>
@@ -262,14 +262,14 @@ extends <a href="../../../../org/apache/juneau/ClassMetaExtended.html" title="cl
 <div class="block">Returns the RDF namespace associated with this class.
  
  <p>
- Namespace is determined in the following order:
+ Namespace is determined in the following order of <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#prefix--"><code>@Rdf.prefix()</code></a> annotation:
  <ol>
-   <li><a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#prefix--"><code>Rdf.prefix()</code></a> annotation defined on class.
-   <li><a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#prefix--"><code>Rdf.prefix()</code></a> annotation defined on package.
-   <li><a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#prefix--"><code>Rdf.prefix()</code></a> annotation defined on superclasses.
-   <li><a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#prefix--"><code>Rdf.prefix()</code></a> annotation defined on superclass packages.
-   <li><a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#prefix--"><code>Rdf.prefix()</code></a> annotation defined on interfaces.
-   <li><a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#prefix--"><code>Rdf.prefix()</code></a> annotation defined on interface packages.
+   <li>Class.
+   <li>Package.
+   <li>Superclasses.
+   <li>Superclass packages.
+   <li>Interfaces.
+   <li>Interface packages.
  </ol></div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>

http://git-wip-us.apache.org/repos/asf/juneau-website/blob/c319662c/content/site/apidocs/org/apache/juneau/jena/RdfCommon.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfCommon.html b/content/site/apidocs/org/apache/juneau/jena/RdfCommon.html
index a429e88..92658ce 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfCommon.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfCommon.html
@@ -364,7 +364,7 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.100">RDF_language</a></pre>
 <div class="block">Configuration property:  RDF language.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.language.s"</js>
    <li><b>Data type:</b>  <code>String</code>
@@ -385,7 +385,7 @@
       </ul>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  Can be any of the following:
  <ul class='spaced-list'>
@@ -430,7 +430,7 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.117">RDF_juneauNs</a></pre>
 <div class="block">Configuration property:  XML namespace for Juneau properties.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.juneauNs.s"</js>
    <li><b>Data type:</b>  <a href="../../../../org/apache/juneau/xml/Namespace.html" title="class in org.apache.juneau.xml"><code>Namespace</code></a>
@@ -456,7 +456,7 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.134">RDF_juneauBpNs</a></pre>
 <div class="block">Configuration property:  Default XML namespace for bean properties.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.juneauBpNs.s"</js>
    <li><b>Data type:</b>  <a href="../../../../org/apache/juneau/xml/Namespace.html" title="class in org.apache.juneau.xml"><code>Namespace</code></a>
@@ -482,7 +482,7 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.156">RDF_useXmlNamespaces</a></pre>
 <div class="block">Configuration property:  Reuse XML namespaces when RDF namespaces not specified.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.useXmlNamespaces.b"</js>
    <li><b>Data type:</b>  <code>Boolean</code>
@@ -494,10 +494,10 @@
       </ul>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
- When specified, namespaces defined using <a href="../../../../org/apache/juneau/xml/annotation/XmlNs.html" title="annotation in org.apache.juneau.xml.annotation"><code>XmlNs</code></a> and <a href="../../../../org/apache/juneau/xml/annotation/Xml.html" title="annotation in org.apache.juneau.xml.annotation"><code>Xml</code></a> will be inherited by the RDF serializers.
- Otherwise, namespaces will be defined using <a href="../../../../org/apache/juneau/jena/annotation/RdfNs.html" title="annotation in org.apache.juneau.jena.annotation"><code>RdfNs</code></a> and <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html" title="annotation in org.apache.juneau.jena.annotation"><code>Rdf</code></a>.</div>
+ When specified, namespaces defined using <a href="../../../../org/apache/juneau/xml/annotation/XmlNs.html" title="annotation in org.apache.juneau.xml.annotation"><code>@XmlNs</code></a> and <a href="../../../../org/apache/juneau/xml/annotation/Xml.html" title="annotation in org.apache.juneau.xml.annotation"><code>@Xml</code></a> will be inherited by the RDF serializers.
+ Otherwise, namespaces will be defined using <a href="../../../../org/apache/juneau/jena/annotation/RdfNs.html" title="annotation in org.apache.juneau.jena.annotation"><code>@RdfNs</code></a> and <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html" title="annotation in org.apache.juneau.jena.annotation"><code>@Rdf</code></a>.</div>
 <dl>
 <dt><span class="seeLabel">See Also:</span></dt>
 <dd><a href="../../../../constant-values.html#org.apache.juneau.jena.RdfCommon.RDF_useXmlNamespaces">Constant Field Values</a></dd>
@@ -513,14 +513,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.187">RDF_arp_iriRules</a></pre>
 <div class="block">Configuration property:  RDF/XML property: <code>iri_rules</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.rdfXml.iri-rules.s"</js>
    <li><b>Data type:</b>  <code>String</code>
    <li><b>Default:</b>  <js>"lax"</js>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  Set the engine for checking and resolving.
  
@@ -553,14 +553,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.228">RDF_arp_errorMode</a></pre>
 <div class="block">Configuration property:  RDF/XML ARP property: <code>error-mode</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.rdfXml.error-mode.s"</js>
    <li><b>Data type:</b>  <code>String</code>
    <li><b>Default:</b>  <js>"lax"</js>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  This allows a coarse-grained approach to control of error handling.
  
@@ -603,14 +603,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.251">RDF_arp_embedding</a></pre>
 <div class="block">Configuration property:  RDF/XML ARP property: <code>embedding</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.rdfXml.embedding.b"</js>
    <li><b>Data type:</b>  <code>Boolean</code>
    <li><b>Default:</b>  <jk>false</jk>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  Sets ARP to look for RDF embedded within an enclosing XML document.
  
@@ -635,13 +635,13 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.284">RDF_arp_err_</a></pre>
 <div class="block">Configuration property:  RDF/XML ARP property: <code>ERR_xxx</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.rdfXml.ERR_"</js>
    <li><b>Data type:</b>  <code>String</code>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  Provides fine-grained control over detected error conditions.
  
@@ -677,13 +677,13 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.299">RDF_arp_warn_</a></pre>
 <div class="block">Configuration property:  RDF/XML ARP property: <code>WARN_xxx</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.rdfXml.WARN_"</js>
    <li><b>Data type:</b>  <code>String</code>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  See <a href="../../../../org/apache/juneau/jena/RdfCommon.html#RDF_arp_err_"><code>RDF_arp_err_</code></a> for details.</div>
 <dl>
@@ -701,13 +701,13 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.314">RDF_arp_ign_</a></pre>
 <div class="block">RDF/XML ARP property: <code>IGN_xxx</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.rdfXml.IGN_"</js>
    <li><b>Data type:</b>  <code>String</code>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  See <a href="../../../../org/apache/juneau/jena/RdfCommon.html#RDF_arp_err_"><code>RDF_arp_err_</code></a> for details.</div>
 <dl>
@@ -725,14 +725,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.330">RDF_rdfxml_xmlBase</a></pre>
 <div class="block">Configuration property:  RDF/XML property: <code>xmlbase</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.rdfXml.xmlbase.s"</js>
    <li><b>Data type:</b>  <code>String</code>
    <li><b>Default:</b>  <jk>null</jk>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  The value to be included for an <xa>xml:base</xa> attribute on the root element in the file.</div>
 <dl>
@@ -750,14 +750,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.347">RDF_rdfxml_longId</a></pre>
 <div class="block">Configuration property:  RDF/XML property: <code>longId</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.rdfXml.longId.b"</js>
    <li><b>Data type:</b>  <code>Boolean</code>
    <li><b>Default:</b>  <jk>false</jk>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  Whether to use long ID's for anon resources.
  Short ID's are easier to read, but can run out of memory on very large models.</div>
@@ -776,14 +776,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.363">RDF_rdfxml_allowBadUris</a></pre>
 <div class="block">Configuration property:  RDF/XML property: <code>allowBadURIs</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.rdfXml.allowBadURIs.b"</js>
    <li><b>Data type:</b>  <code>Boolean</code>
    <li><b>Default:</b>  <jk>false</jk>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  URIs in the graph are, by default, checked prior to serialization.</div>
 <dl>
@@ -801,14 +801,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.401">RDF_rdfxml_relativeUris</a></pre>
 <div class="block">Configuration property:  RDF/XML property: <code>relativeURIs</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.rdfXml.relativeURIs.s"</js>
    <li><b>Data type:</b>  <code>String</code>
    <li><b>Default:</b>  <js>"same-document, absolute, relative, parent"</js>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  What sort of relative URIs should be used.
  
@@ -848,14 +848,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.427">RDF_rdfxml_showXmlDeclaration</a></pre>
 <div class="block">Configuration property:  RDF/XML property: <code>showXmlDeclaration</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.rdfXml.showXmlDeclaration.s"</js>
    <li><b>Data type:</b>  <code>String</code>
    <li><b>Default:</b>  <js>"default"</js>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  Possible values:
  <ul class='spaced-list'>
@@ -883,14 +883,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.446">RDF_rdfxml_showDoctypeDeclaration</a></pre>
 <div class="block">Configuration property:  RDF/XML property: <code>showDoctypeDeclaration</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.rdfXml.showDoctypeDeclaration.b"</js>
    <li><b>Data type:</b>  <code>Boolean</code>
    <li><b>Default:</b>  <jk>true</jk>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  If true, an XML doctype declaration is included in the output.
  This declaration includes a <code>!ENTITY</code> declaration for each prefix mapping in the model, and any 
@@ -911,14 +911,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.462">RDF_rdfxml_tab</a></pre>
 <div class="block">Configuration property:  RDF/XML property: <code>tab</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.rdfXml.tab.i"</js>
    <li><b>Data type:</b>  <code>Integer</code>
    <li><b>Default:</b>  <code>2</code>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  The number of spaces with which to indent XML child elements.</div>
 <dl>
@@ -936,14 +936,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.478">RDF_rdfxml_attributeQuoteChar</a></pre>
 <div class="block">Configuration property:  RDF/XML property: <code>attributeQuoteChar</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.rdfXml.attributeQuoteChar.s"</js>
    <li><b>Data type:</b>  <code>Character</code>
    <li><b>Default:</b>  <js>'"'</js>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  The XML attribute quote character.</div>
 <dl>
@@ -961,14 +961,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.496">RDF_rdfxml_blockRules</a></pre>
 <div class="block">Configuration property:  RDF/XML property: <code>blockRules</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.rdfXml.blockRules.s"</js>
    <li><b>Data type:</b>  <code>String</code>
    <li><b>Default:</b>  <js>""</js>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  A list of <code>Resource</code> or a <code>String</code> being a comma separated list of fragment IDs from 
  <a class="doclink" href="http://www.w3.org/TR/rdf-syntax-grammar">RDF Syntax Grammar</a> indicating grammar 
@@ -988,14 +988,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.512">RDF_n3_minGap</a></pre>
 <div class="block">Configuration property:  N3/Turtle property: <code>minGap</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.n3.minGap.i"</js>
    <li><b>Data type:</b>  <code>Integer</code>
    <li><b>Default:</b>  <code>1</code>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  Minimum gap between items on a line.</div>
 <dl>
@@ -1013,14 +1013,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.528">RDF_n3_objectLists</a></pre>
 <div class="block">Configuration property:  N3/Turtle property: <code>objectLists</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.n3.objectLists.b"</js>
    <li><b>Data type:</b>  <code>Boolean</code>
    <li><b>Default:</b>  <jk>true</jk>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  Print object lists as comma separated lists.</div>
 <dl>
@@ -1038,14 +1038,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.544">RDF_n3_subjectColumn</a></pre>
 <div class="block">Configuration property:  N3/Turtle property: <code>subjectColumn</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.n3.subjectColumn.i"</js>
    <li><b>Data type:</b>  <code>Integer</code>
    <li><b>Default:</b>  indentProperty
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  If the subject is shorter than this value, the first property may go on the same line.</div>
 <dl>
@@ -1063,14 +1063,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.560">RDF_n3_propertyColumn</a></pre>
 <div class="block">Configuration property:  N3/Turtle property: <code>propertyColumn</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.n3.propertyColumn.i"</js>
    <li><b>Data type:</b>  <code>Integer</code>
    <li><b>Default:</b>  <code>8</code>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  Width of the property column.</div>
 <dl>
@@ -1088,14 +1088,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.576">RDF_n3_indentProperty</a></pre>
 <div class="block">Configuration property:  N3/Turtle property: <code>indentProperty</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.n3.indentProperty.i"</js>
    <li><b>Data type:</b>  <code>Integer</code>
    <li><b>Default:</b>  <code>6</code>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  Width to indent properties.</div>
 <dl>
@@ -1113,14 +1113,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.593">RDF_n3_widePropertyLen</a></pre>
 <div class="block">Configuration property:  N3/Turtle property: <code>widePropertyLen</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.n3.widePropertyLen.i"</js>
    <li><b>Data type:</b>  <code>Integer</code>
    <li><b>Default:</b>  <code>20</code>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  Width of the property column.
  Must be longer than <code>propertyColumn</code>.</div>
@@ -1139,14 +1139,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.609">RDF_n3_abbrevBaseUri</a></pre>
 <div class="block">Configuration property:  N3/Turtle property: <code>abbrevBaseURI</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.n3.abbrevBaseURI.b"</js>
    <li><b>Data type:</b>  <code>Boolean</code>
    <li><b>Default:</b>  <jk>true</jk>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  Control whether to use abbreviations <code>&lt;&gt;</code> or <code>&lt;#&gt;</code>.</div>
 <dl>
@@ -1164,14 +1164,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.625">RDF_n3_usePropertySymbols</a></pre>
 <div class="block">Configuration property:  N3/Turtle property: <code>usePropertySymbols</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.n3.usePropertySymbols.b"</js>
    <li><b>Data type:</b>  <code>Boolean</code>
    <li><b>Default:</b>  <jk>true</jk>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  Control whether to use <code>a</code>, <code>=</code> and <code>=&gt;</code> in output</div>
 <dl>
@@ -1189,14 +1189,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.641">RDF_n3_useTripleQuotedStrings</a></pre>
 <div class="block">Configuration property:  N3/Turtle property: <code>useTripleQuotedStrings</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.n3.useTripleQuotedStrings.b"</js>
    <li><b>Data type:</b>  <code>Boolean</code>
    <li><b>Default:</b>  <jk>true</jk>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  Allow the use of <code>"""</code> to delimit long strings.</div>
 <dl>
@@ -1214,14 +1214,14 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.657">RDF_n3_useDoubles</a></pre>
 <div class="block">Configuration property:  N3/Turtle property: <code>useDoubles</code>.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.jena.n3.useDoubles.b"</js>
    <li><b>Data type:</b>  <code>Boolean</code>
    <li><b>Default:</b>  <jk>true</jk>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  Allow the use doubles as <code>123.456</code>.</div>
 <dl>
@@ -1239,7 +1239,7 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.696">RDF_collectionFormat</a></pre>
 <div class="block">Configuration property:  RDF format for representing collections and arrays.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.collectionFormat.s"</js>
    <li><b>Data type:</b>  <code>String</code>
@@ -1251,7 +1251,7 @@
       </ul>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  Possible values:
  <ul class='spaced-list'>
@@ -1287,7 +1287,7 @@
 <pre>static final&nbsp;<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/jena/RdfCommon.html#line.751">RDF_looseCollections</a></pre>
 <div class="block">Configuration property:  Collections should be serialized and parsed as loose collections.
  
-   <h5 class='section'>Property:</h5>
+ <h5 class='section'>Property:</h5>
  <ul>
    <li><b>Name:</b>  <js>"Rdf.looseCollections.b"</js>
    <li><b>Data type:</b>  <code>Boolean</code>
@@ -1301,7 +1301,7 @@
       </ul>
  </ul>
  
-   <h5 class='section'>Description:</h5>
+ <h5 class='section'>Description:</h5>
  <p>
  When specified, collections of resources are handled as loose collections of resources in RDF instead of
  resources that are children of an RDF collection (e.g. Sequence, Bag).
@@ -1314,25 +1314,25 @@
  <p>
  This setting is typically only useful if the beans being parsed into do not have a bean property
  annotated with <a href="../../../../org/apache/juneau/jena/annotation/Rdf.html#beanUri--"><code>@Rdf(beanUri=true)</code></a>.
-
+ 
  <h5 class='section'>Example:</h5>
  <p class='bcode'>
-   WriterSerializer s = <jk>new</jk> RdfSerializerBuilder().xmlabbrev().looseCollections(<jk>true</jk>).build();
-   ReaderParser p = <jk>new</jk> RdfParserBuilder().xml().looseCollections(<jk>true</jk>).build();
-
+   WriterSerializer s = RdfSerializer.<jsm>create</jsm>().xmlabbrev().looseCollections(<jk>true</jk>).build();
+   ReaderParser p = RdfParser.<jsm>create</jsm>().xml().looseCollections(<jk>true</jk>).build();
+ 
    List&lt;MyBean&gt; l = createListOfMyBeans();
-
+ 
    <jc>// Serialize to RDF/XML as loose resources</jc>
    String rdfXml = s.serialize(l);
-
+ 
    <jc>// Parse back into a Java collection</jc>
    l = p.parse(rdfXml, LinkedList.<jk>class</jk>, MyBean.<jk>class</jk>);
-
+ 
    MyBean[] b = createArrayOfMyBeans();
-
+ 
    <jc>// Serialize to RDF/XML as loose resources</jc>
    String rdfXml = s.serialize(b);
-
+ 
    <jc>// Parse back into a bean array</jc>
    b = p.parse(rdfXml, MyBean[].<jk>class</jk>);
  </p></div>