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 2017/06/26 00:44:32 UTC

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

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/89e089cf/content/site/apidocs/org/apache/juneau/BeanDictionaryList.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanDictionaryList.html b/content/site/apidocs/org/apache/juneau/BeanDictionaryList.html
index 484ac12..f2c2f61 100644
--- a/content/site/apidocs/org/apache/juneau/BeanDictionaryList.html
+++ b/content/site/apidocs/org/apache/juneau/BeanDictionaryList.html
@@ -268,12 +268,13 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/util/ArrayList.ht
 <ul class="blockListLast">
 <li class="blockList">
 <h4>BeanDictionaryList</h4>
-<pre>public&nbsp;<a href="../../../src-html/org/apache/juneau/BeanDictionaryList.html#line.40">BeanDictionaryList</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>
+<pre>public&nbsp;<a href="../../../src-html/org/apache/juneau/BeanDictionaryList.html#line.41">BeanDictionaryList</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">Constructor.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
 <dd><code>c</code> - The list of bean classes to add to this dictionary.
- Classes must either specify a <a href="../../../org/apache/juneau/annotation/Bean.html#typeName--"><code>Bean.typeName()</code></a> value or be another subclass of <code>BeanDictionaryList</code>.</dd>
+ Classes must either specify a <a href="../../../org/apache/juneau/annotation/Bean.html#typeName--"><code>Bean.typeName()</code></a> value or be another subclass of
+ <code>BeanDictionaryList</code>.</dd>
 </dl>
 </li>
 </ul>
@@ -291,12 +292,13 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/util/ArrayList.ht
 <ul class="blockListLast">
 <li class="blockList">
 <h4>append</h4>
-<pre>protected&nbsp;<a href="../../../org/apache/juneau/BeanDictionaryList.html" title="class in org.apache.juneau">BeanDictionaryList</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanDictionaryList.html#line.51">append</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>
+<pre>protected&nbsp;<a href="../../../org/apache/juneau/BeanDictionaryList.html" title="class in org.apache.juneau">BeanDictionaryList</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanDictionaryList.html#line.53">append</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">Append one or more bean classes to this bean dictionary.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
 <dd><code>c</code> - The list of bean classes to add to this dictionary.
- Classes must either specify a <a href="../../../org/apache/juneau/annotation/Bean.html#typeName--"><code>Bean.typeName()</code></a> value or be another subclass of <code>BeanDictionaryList</code>.</dd>
+ Classes must either specify a <a href="../../../org/apache/juneau/annotation/Bean.html#typeName--"><code>Bean.typeName()</code></a> value or be another subclass of
+ <code>BeanDictionaryList</code>.</dd>
 <dt><span class="returnLabel">Returns:</span></dt>
 <dd>This object (for method chaining).</dd>
 </dl>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/89e089cf/content/site/apidocs/org/apache/juneau/BeanMap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanMap.html b/content/site/apidocs/org/apache/juneau/BeanMap.html
index a3e5634..e1aefe3 100644
--- a/content/site/apidocs/org/apache/juneau/BeanMap.html
+++ b/content/site/apidocs/org/apache/juneau/BeanMap.html
@@ -125,23 +125,25 @@ var activeTableTab = "activeTableTab";
 </dl>
 <hr>
 <br>
-<pre>public class <a href="../../../src-html/org/apache/juneau/BeanMap.html#line.55">BeanMap</a>&lt;T&gt;
+<pre>public class <a href="../../../src-html/org/apache/juneau/BeanMap.html#line.57">BeanMap</a>&lt;T&gt;
 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;
 implements <a href="../../../org/apache/juneau/Delegate.html" title="interface in org.apache.juneau">Delegate</a>&lt;T&gt;</pre>
 <div class="block">Java bean wrapper class.
 
  <h5 class='section'>Description:</h5>
  <p>
- A wrapper that wraps Java bean instances inside of a <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util"><code>Map</code></a> interface that allows
-   properties on the wrapped object can be accessed using the <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true#get-java.lang.Object-" title="class or interface in java.util"><code>get()</code></a> and <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true#put-K-V-" title="class or interface in java.util"><code>put()</code></a> methods.
+ A wrapper that wraps Java bean instances inside of a <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util"><code>Map</code></a> interface that allows properties on the wrapped
+ object can be accessed using the <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true#get-java.lang.Object-" title="class or interface in java.util"><code>get()</code></a> and <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true#put-K-V-" title="class or interface in java.util"><code>put()</code></a> methods.
  <p>
  Use the <a href="../../../org/apache/juneau/BeanContext.html" title="class in org.apache.juneau"><code>BeanContext</code></a> class to create instances of this class.
 
  <h6 class='topic'>Bean property order</h6>
  <p>
- The order of the properties returned by the <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true#keySet--" title="class or interface in java.util"><code>keySet()</code></a> and <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true#entrySet--" title="class or interface in java.util"><code>entrySet()</code></a> methods are as follows:
+ The order of the properties returned by the <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true#keySet--" title="class or interface in java.util"><code>keySet()</code></a> and <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true#entrySet--" title="class or interface in java.util"><code>entrySet()</code></a>
+ methods are as follows:
  <ul class='spaced-list'>
-   <li>If <a href="../../../org/apache/juneau/annotation/Bean.html" title="annotation in org.apache.juneau.annotation"><code>@Bean</code></a> annotation is specified on class, then the order is the same as the list of properties in the annotation.
+   <li>If <a href="../../../org/apache/juneau/annotation/Bean.html" title="annotation in org.apache.juneau.annotation"><code>@Bean</code></a> annotation is specified on class, then the order is the same as the list of properties
+      in the annotation.
    <li>If <a href="../../../org/apache/juneau/annotation/Bean.html" title="annotation in org.apache.juneau.annotation"><code>@Bean</code></a> annotation is not specified on the class, then the order is the same as that returned
       by the <a href="http://docs.oracle.com/javase/7/docs/api/java/beans/BeanInfo.html?is-external=true" title="class or interface in java.beans"><code>BeanInfo</code></a> class (i.e. ordered by definition in the class).
  </ul>
@@ -150,9 +152,9 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 
  <h6 class='topic'>POJO swaps</h6>
  <p>
- If <a href="../../../org/apache/juneau/transform/PojoSwap.html" title="class in org.apache.juneau.transform"><code>PojoSwaps</code></a> are defined on the class types of the properties of this bean or the bean properties themselves, the
-   <a href="../../../org/apache/juneau/BeanMap.html#get-java.lang.Object-"><code>get(Object)</code></a> and <a href="../../../org/apache/juneau/BeanMap.html#put-java.lang.String-java.lang.Object-"><code>put(String, Object)</code></a> methods will automatically
-   transform the property value to and from the serialized form.</div>
+ If <a href="../../../org/apache/juneau/transform/PojoSwap.html" title="class in org.apache.juneau.transform"><code>PojoSwaps</code></a> are defined on the class types of the properties of this bean or the bean properties
+ themselves, the <a href="../../../org/apache/juneau/BeanMap.html#get-java.lang.Object-"><code>get(Object)</code></a> and <a href="../../../org/apache/juneau/BeanMap.html#put-java.lang.String-java.lang.Object-"><code>put(String, Object)</code></a> methods will automatically transform the
+ property value to and from the serialized form.</div>
 </li>
 </ul>
 </div>
@@ -417,7 +419,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>bean</h4>
-<pre>protected&nbsp;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a> <a href="../../../src-html/org/apache/juneau/BeanMap.html#line.58">bean</a></pre>
+<pre>protected&nbsp;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a> <a href="../../../src-html/org/apache/juneau/BeanMap.html#line.60">bean</a></pre>
 <div class="block">The wrapped object.</div>
 </li>
 </ul>
@@ -427,7 +429,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>propertyCache</h4>
-<pre>protected&nbsp;<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; <a href="../../../src-html/org/apache/juneau/BeanMap.html#line.61">propertyCache</a></pre>
+<pre>protected&nbsp;<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; <a href="../../../src-html/org/apache/juneau/BeanMap.html#line.63">propertyCache</a></pre>
 <div class="block">Temporary holding cache for beans with read-only properties.  Normally null.</div>
 </li>
 </ul>
@@ -437,7 +439,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>arrayPropertyCache</h4>
-<pre>protected&nbsp;<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/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;?&gt;&gt; <a href="../../../src-html/org/apache/juneau/BeanMap.html#line.64">arrayPropertyCache</a></pre>
+<pre>protected&nbsp;<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/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;?&gt;&gt; <a href="../../../src-html/org/apache/juneau/BeanMap.html#line.66">arrayPropertyCache</a></pre>
 <div class="block">Temporary holding cache for bean properties of array types when the add() method is being used.</div>
 </li>
 </ul>
@@ -447,7 +449,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockListLast">
 <li class="blockList">
 <h4>meta</h4>
-<pre>protected&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in org.apache.juneau">BeanMeta</a>&lt;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&gt; <a href="../../../src-html/org/apache/juneau/BeanMap.html#line.67">meta</a></pre>
+<pre>protected&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in org.apache.juneau">BeanMeta</a>&lt;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&gt; <a href="../../../src-html/org/apache/juneau/BeanMap.html#line.69">meta</a></pre>
 <div class="block">The BeanMeta associated with the class of the object.</div>
 </li>
 </ul>
@@ -467,7 +469,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockListLast">
 <li class="blockList">
 <h4>BeanMap</h4>
-<pre>protected&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.79">BeanMap</a>(<a href="../../../org/apache/juneau/BeanSession.html" title="class in org.apache.juneau">BeanSession</a>&nbsp;session,
+<pre>protected&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.81">BeanMap</a>(<a href="../../../org/apache/juneau/BeanSession.html" title="class in org.apache.juneau">BeanSession</a>&nbsp;session,
                   <a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&nbsp;bean,
                   <a href="../../../org/apache/juneau/BeanMeta.html" title="class in org.apache.juneau">BeanMeta</a>&lt;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&gt;&nbsp;meta)</pre>
 <div class="block">Instance of this class are instantiated through the BeanContext class.</div>
@@ -493,7 +495,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>getMeta</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in org.apache.juneau">BeanMeta</a>&lt;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.93">getMeta</a>()</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in org.apache.juneau">BeanMeta</a>&lt;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.95">getMeta</a>()</pre>
 <div class="block">Returns the metadata associated with this bean map.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -507,7 +509,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>getBeanSession</h4>
-<pre>public final&nbsp;<a href="../../../org/apache/juneau/BeanSession.html" title="class in org.apache.juneau">BeanSession</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.102">getBeanSession</a>()</pre>
+<pre>public final&nbsp;<a href="../../../org/apache/juneau/BeanSession.html" title="class in org.apache.juneau">BeanSession</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.104">getBeanSession</a>()</pre>
 <div class="block">Returns the bean session that created this bean map.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -521,7 +523,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>getBean</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.113">getBean</a>()</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.115">getBean</a>()</pre>
 <div class="block">Returns the wrapped bean object.
  Triggers bean creation if bean has read-only properties set through a constructor
    defined by the <a href="../../../org/apache/juneau/annotation/BeanConstructor.html" title="annotation in org.apache.juneau.annotation"><code>BeanConstructor</code></a> annotation.</div>
@@ -537,7 +539,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>getBean</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.147">getBean</a>(boolean&nbsp;create)</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.149">getBean</a>(boolean&nbsp;create)</pre>
 <div class="block">Returns the wrapped bean object.
  <p>
  If <code>create</code> is <jk>false</jk>, then this method may return <jk>null</jk>
@@ -561,7 +563,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>put</h4>
-<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/BeanMap.html#line.206">put</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;property,
+<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/BeanMap.html#line.209">put</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;property,
                   <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;value)</pre>
 <div class="block">Sets a property on the bean.
  <p>
@@ -595,7 +597,8 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <dd><code>property</code> - The name of the property to set.</dd>
 <dd><code>value</code> - The value to set the property to.</dd>
 <dt><span class="returnLabel">Returns:</span></dt>
-<dd>If the bean context setting <code>beanMapPutReturnsOldValue</code> is <jk>true</jk>, then the old value of the property is returned.
+<dd>If the bean context setting <code>beanMapPutReturnsOldValue</code> is <jk>true</jk>, then the old value of the
+ property is returned.
  Otherwise, this method always returns <jk>null</jk>.</dd>
 <dt><span class="throwsLabel">Throws:</span></dt>
 <dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/RuntimeException.html?is-external=true" title="class or interface in java.lang">RuntimeException</a></code> - if any of the following occur.
@@ -613,7 +616,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>add</h4>
-<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.232">add</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;property,
+<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.235">add</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;property,
                 <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;value)</pre>
 <div class="block">Add a value to a collection or array property.
  <p>
@@ -632,7 +635,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>get</h4>
-<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/BeanMap.html#line.278">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;property)</pre>
+<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/BeanMap.html#line.281">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;property)</pre>
 <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
@@ -680,7 +683,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>getRaw</h4>
-<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/BeanMap.html#line.295">getRaw</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;property)</pre>
+<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/BeanMap.html#line.298">getRaw</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;property)</pre>
 <div class="block">Same as <a href="../../../org/apache/juneau/BeanMap.html#get-java.lang.Object-"><code>get(Object)</code></a> except bypasses the POJO filter associated with the bean property or
    bean filter associated with the bean class.</div>
 <dl>
@@ -697,7 +700,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>load</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.319">load</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;input)
+<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.322">load</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;input)
                 throws <a href="../../../org/apache/juneau/parser/ParseException.html" title="class in org.apache.juneau.parser">ParseException</a></pre>
 <div class="block">Convenience method for setting multiple property values by passing in JSON (or other) text.
  <p>
@@ -725,7 +728,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>load</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.333">load</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>public&nbsp;<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.336">load</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,
                        <a href="../../../org/apache/juneau/parser/ReaderParser.html" title="class in org.apache.juneau.parser">ReaderParser</a>&nbsp;p)
                 throws <a href="../../../org/apache/juneau/parser/ParseException.html" title="class in org.apache.juneau.parser">ParseException</a>,
                        <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>
@@ -748,7 +751,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>load</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.347">load</a>(<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>&nbsp;entries)</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.350">load</a>(<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>&nbsp;entries)</pre>
 <div class="block">Convenience method for loading this map with the contents of the specified map.
  <p>
  Identical to <a href="http://docs.oracle.com/javase/7/docs/api/java/util/AbstractMap.html?is-external=true#putAll-java.util.Map-" title="class or interface in java.util"><code>AbstractMap.putAll(Map)</code></a> except as a fluent-style method.</div>
@@ -766,7 +769,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>keySet</h4>
-<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/BeanMap.html#line.358">keySet</a>()</pre>
+<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/BeanMap.html#line.361">keySet</a>()</pre>
 <div class="block">Returns the names of all properties associated with the bean.
  <p>
  The returned set is unmodifiable.</div>
@@ -784,7 +787,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>getProperty</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanMapEntry.html" title="class in org.apache.juneau">BeanMapEntry</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.386">getProperty</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;propertyName)</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanMapEntry.html" title="class in org.apache.juneau">BeanMapEntry</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.389">getProperty</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;propertyName)</pre>
 <div class="block">Returns the specified property on this bean map.
  <p>
  Allows you to get and set an individual property on a bean without having a
@@ -807,7 +810,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>getPropertyMeta</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/BeanMap.html#line.399">getPropertyMeta</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;propertyName)</pre>
+<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/BeanMap.html#line.402">getPropertyMeta</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;propertyName)</pre>
 <div class="block">Returns the metadata on the specified property.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -823,7 +826,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>getClassMeta</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau">ClassMeta</a>&lt;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.412">getClassMeta</a>()</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau">ClassMeta</a>&lt;<a href="../../../org/apache/juneau/BeanMap.html" title="type parameter in BeanMap">T</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.415">getClassMeta</a>()</pre>
 <div class="block">Returns the <a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau"><code>ClassMeta</code></a> of the wrapped bean.</div>
 <dl>
 <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
@@ -839,7 +842,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>getValues</h4>
-<pre>public&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;<a href="../../../org/apache/juneau/BeanPropertyValue.html" title="class in org.apache.juneau">BeanPropertyValue</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.428">getValues</a>(boolean&nbsp;ignoreNulls,
+<pre>public&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;<a href="../../../org/apache/juneau/BeanPropertyValue.html" title="class in org.apache.juneau">BeanPropertyValue</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.431">getValues</a>(boolean&nbsp;ignoreNulls,
                                          <a href="../../../org/apache/juneau/BeanPropertyValue.html" title="class in org.apache.juneau">BeanPropertyValue</a>...&nbsp;prependVals)</pre>
 <div class="block">Invokes all the getters on this bean and return the values as a list of <a href="../../../org/apache/juneau/BeanPropertyValue.html" title="class in org.apache.juneau"><code>BeanPropertyValue</code></a> objects.
  <p>
@@ -860,7 +863,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>resolveVars</h4>
-<pre>public&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/BeanMap.html#line.467">resolveVars</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>
+<pre>public&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/BeanMap.html#line.470">resolveVars</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">Given a string containing variables of the form <code>"{property}"</code>, replaces those variables with
  property values in this bean.</div>
 <dl>
@@ -877,7 +880,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockList">
 <li class="blockList">
 <h4>getProperties</h4>
-<pre>protected&nbsp;<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/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.475">getProperties</a>()</pre>
+<pre>protected&nbsp;<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/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.478">getProperties</a>()</pre>
 <div class="block">Returns a simple collection of properties for this bean map.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -891,7 +894,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i
 <ul class="blockListLast">
 <li class="blockList">
 <h4>entrySet</h4>
-<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/util/Map.Entry.html?is-external=true" title="class or interface in java.util">Map.Entry</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;&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.484">entrySet</a>()</pre>
+<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/util/Map.Entry.html?is-external=true" title="class or interface in java.util">Map.Entry</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;&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMap.html#line.487">entrySet</a>()</pre>
 <div class="block">Returns all the properties associated with the bean.</div>
 <dl>
 <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/89e089cf/content/site/apidocs/org/apache/juneau/BeanMapEntry.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanMapEntry.html b/content/site/apidocs/org/apache/juneau/BeanMapEntry.html
index b044571..cabfa2b 100644
--- a/content/site/apidocs/org/apache/juneau/BeanMapEntry.html
+++ b/content/site/apidocs/org/apache/juneau/BeanMapEntry.html
@@ -304,10 +304,11 @@ implements <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.Entry
 <ul class="blockList">
 <li class="blockList">
 <h4>setValue</h4>
-<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/BeanMapEntry.html#line.98">setValue</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;value)</pre>
+<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/BeanMapEntry.html#line.99">setValue</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;value)</pre>
 <div class="block">Sets the value of this property.
  <p>
- If the property is an array of type <code>X</code>, then the value can be a <code>Collection&lt;X&gt;</code> or <code>X[]</code> or <code>Object[]</code>.
+ If the property is an array of type <code>X</code>, then the value can be a <code>Collection&lt;X&gt;</code> or <code>X[]</code> or
+ <code>Object[]</code>.
  <p>
  If the property is a bean type <code>X</code>, then the value can either be an <code>X</code> or a <code>Map</code>.
  <p>
@@ -331,7 +332,7 @@ implements <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.Entry
 <ul class="blockList">
 <li class="blockList">
 <h4>getBeanMap</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMapEntry.html#line.107">getBeanMap</a>()</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMapEntry.html#line.108">getBeanMap</a>()</pre>
 <div class="block">Returns the bean map that contains this property.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -345,7 +346,7 @@ implements <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.Entry
 <ul class="blockList">
 <li class="blockList">
 <h4>getMeta</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/BeanMapEntry.html#line.116">getMeta</a>()</pre>
+<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/BeanMapEntry.html#line.117">getMeta</a>()</pre>
 <div class="block">Returns the metadata about this bean property.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -359,7 +360,7 @@ implements <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.Entry
 <ul class="blockListLast">
 <li class="blockList">
 <h4>toString</h4>
-<pre>public&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/BeanMapEntry.html#line.121">toString</a>()</pre>
+<pre>public&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/BeanMapEntry.html#line.122">toString</a>()</pre>
 <dl>
 <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
 <dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a></code>&nbsp;in class&nbsp;<code><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></code></dd>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/89e089cf/content/site/apidocs/org/apache/juneau/BeanMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanMeta.html b/content/site/apidocs/org/apache/juneau/BeanMeta.html
index 06677d4..7cb43f7 100644
--- a/content/site/apidocs/org/apache/juneau/BeanMeta.html
+++ b/content/site/apidocs/org/apache/juneau/BeanMeta.html
@@ -116,7 +116,7 @@ var activeTableTab = "activeTableTab";
 </dl>
 <hr>
 <br>
-<pre>public class <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.56">BeanMeta</a>&lt;T&gt;
+<pre>public class <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.57">BeanMeta</a>&lt;T&gt;
 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">Encapsulates all access to the properties of a bean class (like a souped-up <a href="http://docs.oracle.com/javase/7/docs/api/java/beans/BeanInfo.html?is-external=true" title="class or interface in java.beans"><code>BeanInfo</code></a>).
 
@@ -131,7 +131,8 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
  <p>
  The order of the properties are as follows:
  <ul class='spaced-list'>
-   <li>If <a href="../../../org/apache/juneau/annotation/Bean.html" title="annotation in org.apache.juneau.annotation"><code>@Bean</code></a> annotation is specified on class, then the order is the same as the list of properties in the annotation.
+   <li>If <a href="../../../org/apache/juneau/annotation/Bean.html" title="annotation in org.apache.juneau.annotation"><code>@Bean</code></a> annotation is specified on class, then the order is the same as the list of properties
+      in the annotation.
    <li>If <a href="../../../org/apache/juneau/annotation/Bean.html" title="annotation in org.apache.juneau.annotation"><code>@Bean</code></a> annotation is not specified on the class, then the order is based on the following.
       <ul>
          <li>Public fields (same order as <code>Class.getFields()</code>).
@@ -339,7 +340,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <ul class="blockList">
 <li class="blockList">
 <h4>classMeta</h4>
-<pre>protected final&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau">ClassMeta</a>&lt;<a href="../../../org/apache/juneau/BeanMeta.html" title="type parameter in BeanMeta">T</a>&gt; <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.59">classMeta</a></pre>
+<pre>protected final&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau">ClassMeta</a>&lt;<a href="../../../org/apache/juneau/BeanMeta.html" title="type parameter in BeanMeta">T</a>&gt; <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.60">classMeta</a></pre>
 <div class="block">The target class type that this meta object describes.</div>
 </li>
 </ul>
@@ -349,7 +350,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <ul class="blockList">
 <li class="blockList">
 <h4>c</h4>
-<pre>protected final&nbsp;<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;<a href="../../../org/apache/juneau/BeanMeta.html" title="type parameter in BeanMeta">T</a>&gt; <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.62">c</a></pre>
+<pre>protected final&nbsp;<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;<a href="../../../org/apache/juneau/BeanMeta.html" title="type parameter in BeanMeta">T</a>&gt; <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.63">c</a></pre>
 <div class="block">The target class that this meta object describes.</div>
 </li>
 </ul>
@@ -359,7 +360,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <ul class="blockList">
 <li class="blockList">
 <h4>properties</h4>
-<pre>protected final&nbsp;<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="../../../org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&gt; <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.65">properties</a></pre>
+<pre>protected final&nbsp;<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="../../../org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&gt; <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.66">properties</a></pre>
 <div class="block">The properties on the target class.</div>
 </li>
 </ul>
@@ -369,7 +370,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <ul class="blockList">
 <li class="blockList">
 <h4>getterProps</h4>
-<pre>protected final&nbsp;<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/reflect/Method.html?is-external=true" title="class or interface in java.lang.reflect">Method</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>&gt; <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.68">getterProps</a></pre>
+<pre>protected final&nbsp;<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/reflect/Method.html?is-external=true" title="class or interface in java.lang.reflect">Method</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>&gt; <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.69">getterProps</a></pre>
 <div class="block">The getter properties on the target class.</div>
 </li>
 </ul>
@@ -379,7 +380,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <ul class="blockList">
 <li class="blockList">
 <h4>setterProps</h4>
-<pre>protected final&nbsp;<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/reflect/Method.html?is-external=true" title="class or interface in java.lang.reflect">Method</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>&gt; <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.71">setterProps</a></pre>
+<pre>protected final&nbsp;<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/reflect/Method.html?is-external=true" title="class or interface in java.lang.reflect">Method</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>&gt; <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.72">setterProps</a></pre>
 <div class="block">The setter properties on the target class.</div>
 </li>
 </ul>
@@ -389,7 +390,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <ul class="blockList">
 <li class="blockList">
 <h4>ctx</h4>
-<pre>protected final&nbsp;<a href="../../../org/apache/juneau/BeanContext.html" title="class in org.apache.juneau">BeanContext</a> <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.74">ctx</a></pre>
+<pre>protected final&nbsp;<a href="../../../org/apache/juneau/BeanContext.html" title="class in org.apache.juneau">BeanContext</a> <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.75">ctx</a></pre>
 <div class="block">The bean context that created this metadata object.</div>
 </li>
 </ul>
@@ -399,7 +400,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <ul class="blockList">
 <li class="blockList">
 <h4>beanFilter</h4>
-<pre>protected final&nbsp;<a href="../../../org/apache/juneau/transform/BeanFilter.html" title="class in org.apache.juneau.transform">BeanFilter</a> <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.77">beanFilter</a></pre>
+<pre>protected final&nbsp;<a href="../../../org/apache/juneau/transform/BeanFilter.html" title="class in org.apache.juneau.transform">BeanFilter</a> <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.78">beanFilter</a></pre>
 <div class="block">Optional bean filter associated with the target class.</div>
 </li>
 </ul>
@@ -409,7 +410,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <ul class="blockList">
 <li class="blockList">
 <h4>typeVarImpls</h4>
-<pre>protected final&nbsp;<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/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;?&gt;,<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;[]&gt; <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.80">typeVarImpls</a></pre>
+<pre>protected final&nbsp;<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/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;?&gt;,<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;[]&gt; <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.81">typeVarImpls</a></pre>
 <div class="block">Type variables implemented by this bean.</div>
 </li>
 </ul>
@@ -419,7 +420,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <ul class="blockList">
 <li class="blockList">
 <h4>constructor</h4>
-<pre>protected final&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/Constructor.html?is-external=true" title="class or interface in java.lang.reflect">Constructor</a>&lt;<a href="../../../org/apache/juneau/BeanMeta.html" title="type parameter in BeanMeta">T</a>&gt; <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.83">constructor</a></pre>
+<pre>protected final&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/Constructor.html?is-external=true" title="class or interface in java.lang.reflect">Constructor</a>&lt;<a href="../../../org/apache/juneau/BeanMeta.html" title="type parameter in BeanMeta">T</a>&gt; <a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.84">constructor</a></pre>
 <div class="block">The constructor for this bean.</div>
 </li>
 </ul>
@@ -429,7 +430,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <ul class="blockListLast">
 <li class="blockList">
 <h4>constructorArgs</h4>
-<pre>protected 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/BeanMeta.html#line.86">constructorArgs</a></pre>
+<pre>protected 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/BeanMeta.html#line.87">constructorArgs</a></pre>
 <div class="block">For beans with constructors with BeanConstructor annotation, this is the list of constructor arg properties.</div>
 </li>
 </ul>
@@ -447,7 +448,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <ul class="blockListLast">
 <li class="blockList">
 <h4>BeanMeta</h4>
-<pre>protected&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.107">BeanMeta</a>(<a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau">ClassMeta</a>&lt;<a href="../../../org/apache/juneau/BeanMeta.html" title="type parameter in BeanMeta">T</a>&gt;&nbsp;classMeta,
+<pre>protected&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.108">BeanMeta</a>(<a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau">ClassMeta</a>&lt;<a href="../../../org/apache/juneau/BeanMeta.html" title="type parameter in BeanMeta">T</a>&gt;&nbsp;classMeta,
                    <a href="../../../org/apache/juneau/BeanContext.html" title="class in org.apache.juneau">BeanContext</a>&nbsp;ctx,
                    <a href="../../../org/apache/juneau/transform/BeanFilter.html" title="class in org.apache.juneau.transform">BeanFilter</a>&nbsp;beanFilter,
                    <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;pNames)</pre>
@@ -476,7 +477,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <li class="blockList">
 <h4>getClassMeta</h4>
 <pre><a href="../../../org/apache/juneau/annotation/BeanIgnore.html" title="annotation in org.apache.juneau.annotation">@BeanIgnore</a>
-public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau">ClassMeta</a>&lt;<a href="../../../org/apache/juneau/BeanMeta.html" title="type parameter in BeanMeta">T</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.459">getClassMeta</a>()</pre>
+public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau">ClassMeta</a>&lt;<a href="../../../org/apache/juneau/BeanMeta.html" title="type parameter in BeanMeta">T</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.460">getClassMeta</a>()</pre>
 <div class="block">Returns the <a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau"><code>ClassMeta</code></a> of this bean.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -490,7 +491,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockList">
 <li class="blockList">
 <h4>getDictionaryName</h4>
-<pre>public&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/BeanMeta.html#line.468">getDictionaryName</a>()</pre>
+<pre>public&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/BeanMeta.html#line.469">getDictionaryName</a>()</pre>
 <div class="block">Returns the dictionary name for this bean as defined through the <a href="../../../org/apache/juneau/annotation/Bean.html#typeName--"><code>Bean.typeName()</code></a> annotation.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -504,7 +505,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockList">
 <li class="blockList">
 <h4>getTypeProperty</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/BeanMeta.html#line.478">getTypeProperty</a>()</pre>
+<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/BeanMeta.html#line.479">getTypeProperty</a>()</pre>
 <div class="block">Returns a mock bean property that resolves to the name <js>"_type"</js> and whose value always resolves
    to the dictionary name of the bean.</div>
 <dl>
@@ -519,7 +520,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockList">
 <li class="blockList">
 <h4>getPropertyMetas</h4>
-<pre>public&nbsp;<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/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.654">getPropertyMetas</a>()</pre>
+<pre>public&nbsp;<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/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.655">getPropertyMetas</a>()</pre>
 <div class="block">Returns the metadata on all properties associated with this bean.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -533,7 +534,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockList">
 <li class="blockList">
 <h4>getPropertyMetas</h4>
-<pre>public&nbsp;<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/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.664">getPropertyMetas</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;pNames)</pre>
+<pre>public&nbsp;<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/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.665">getPropertyMetas</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;pNames)</pre>
 <div class="block">Returns the metadata on the specified list of properties.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -549,7 +550,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockList">
 <li class="blockList">
 <h4>getExtendedMeta</h4>
-<pre>public&nbsp;&lt;M extends <a href="../../../org/apache/juneau/BeanMetaExtended.html" title="class in org.apache.juneau">BeanMetaExtended</a>&gt;&nbsp;M&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.679">getExtendedMeta</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;M&gt;&nbsp;metaDataClass)</pre>
+<pre>public&nbsp;&lt;M extends <a href="../../../org/apache/juneau/BeanMetaExtended.html" title="class in org.apache.juneau">BeanMetaExtended</a>&gt;&nbsp;M&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.680">getExtendedMeta</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;M&gt;&nbsp;metaDataClass)</pre>
 <div class="block">Returns the language-specified extended metadata on this bean class.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -565,7 +566,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockList">
 <li class="blockList">
 <h4>getPropertyMeta</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/BeanMeta.html#line.690">getPropertyMeta</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)</pre>
+<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/BeanMeta.html#line.691">getPropertyMeta</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)</pre>
 <div class="block">Returns metadata about the specified property.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -582,7 +583,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockList">
 <li class="blockList">
 <h4>newBean</h4>
-<pre>protected&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="type parameter in BeanMeta">T</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.708">newBean</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;outer)
+<pre>protected&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="type parameter in BeanMeta">T</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.709">newBean</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;outer)
              throws <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a>,
                     <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/InstantiationException.html?is-external=true" title="class or interface in java.lang">InstantiationException</a>,
                     <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/IllegalAccessException.html?is-external=true" title="class or interface in java.lang">IllegalAccessException</a>,
@@ -607,7 +608,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockListLast">
 <li class="blockList">
 <h4>toString</h4>
-<pre>public&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/BeanMeta.html#line.791">toString</a>()</pre>
+<pre>public&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/BeanMeta.html#line.792">toString</a>()</pre>
 <dl>
 <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
 <dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a></code>&nbsp;in class&nbsp;<code><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></code></dd>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/89e089cf/content/site/apidocs/org/apache/juneau/BeanPropertyMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanPropertyMeta.html b/content/site/apidocs/org/apache/juneau/BeanPropertyMeta.html
index 98493b0..dfa8ec7 100644
--- a/content/site/apidocs/org/apache/juneau/BeanPropertyMeta.html
+++ b/content/site/apidocs/org/apache/juneau/BeanPropertyMeta.html
@@ -434,12 +434,13 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>getClassMeta</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau">ClassMeta</a>&lt;?&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.340">getClassMeta</a>()</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau">ClassMeta</a>&lt;?&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.341">getClassMeta</a>()</pre>
 <div class="block">Returns the <a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau"><code>ClassMeta</code></a> of the class of this property.
  <p>
  If this property or the property type class has a <a href="../../../org/apache/juneau/transform/PojoSwap.html" title="class in org.apache.juneau.transform"><code>PojoSwap</code></a> associated with it, this
-   method returns the transformed class meta.
- This matches the class type that is used by the <a href="../../../org/apache/juneau/BeanPropertyMeta.html#get-org.apache.juneau.BeanMap-java.lang.String-"><code>get(BeanMap,String)</code></a> and <a href="../../../org/apache/juneau/BeanPropertyMeta.html#set-org.apache.juneau.BeanMap-java.lang.String-java.lang.Object-"><code>set(BeanMap,String,Object)</code></a> methods.</div>
+ method returns the transformed class meta.
+ This matches the class type that is used by the <a href="../../../org/apache/juneau/BeanPropertyMeta.html#get-org.apache.juneau.BeanMap-java.lang.String-"><code>get(BeanMap,String)</code></a> and
+ <a href="../../../org/apache/juneau/BeanPropertyMeta.html#set-org.apache.juneau.BeanMap-java.lang.String-java.lang.Object-"><code>set(BeanMap,String,Object)</code></a> methods.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
 <dd>The <a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau"><code>ClassMeta</code></a> of the class of this property.</dd>
@@ -452,7 +453,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>getBeanRegistry</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanRegistry.html" title="class in org.apache.juneau">BeanRegistry</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.353">getBeanRegistry</a>()</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanRegistry.html" title="class in org.apache.juneau">BeanRegistry</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.354">getBeanRegistry</a>()</pre>
 <div class="block">Returns the bean dictionary in use for this bean property.
  The order of lookup for the dictionary is as follows:
  <ol>
@@ -471,7 +472,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>isUri</h4>
-<pre>public&nbsp;boolean&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.369">isUri</a>()</pre>
+<pre>public&nbsp;boolean&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.370">isUri</a>()</pre>
 <div class="block">Returns <jk>true</jk> if this bean property is a URI.
  <p>
  A bean property can be considered a URI if any of the following are true:
@@ -492,7 +493,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>isDyna</h4>
-<pre>public&nbsp;boolean&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.377">isDyna</a>()</pre>
+<pre>public&nbsp;boolean&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.378">isDyna</a>()</pre>
 <div class="block">Returns <jk>true</jk> if this bean property is named <js>"*"</js>.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -506,7 +507,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>getProperties</h4>
-<pre>public&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/BeanPropertyMeta.html#line.387">getProperties</a>()</pre>
+<pre>public&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/BeanPropertyMeta.html#line.388">getProperties</a>()</pre>
 <div class="block">Returns the override list of properties defined through a <a href="../../../org/apache/juneau/annotation/BeanProperty.html#properties--"><code>BeanProperty.properties()</code></a> annotation
  on this property.</div>
 <dl>
@@ -521,7 +522,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>getExtendedMeta</h4>
-<pre>public&nbsp;&lt;M extends <a href="../../../org/apache/juneau/BeanPropertyMetaExtended.html" title="class in org.apache.juneau">BeanPropertyMetaExtended</a>&gt;&nbsp;M&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.397">getExtendedMeta</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;M&gt;&nbsp;c)</pre>
+<pre>public&nbsp;&lt;M extends <a href="../../../org/apache/juneau/BeanPropertyMetaExtended.html" title="class in org.apache.juneau">BeanPropertyMetaExtended</a>&gt;&nbsp;M&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.398">getExtendedMeta</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;M&gt;&nbsp;c)</pre>
 <div class="block">Returns the language-specified extended metadata on this bean property.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -537,7 +538,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>get</h4>
-<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/BeanPropertyMeta.html#line.410">get</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m,
+<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/BeanPropertyMeta.html#line.411">get</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m,
                   <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;pName)</pre>
 <div class="block">Equivalent to calling <a href="../../../org/apache/juneau/BeanMap.html#get-java.lang.Object-"><code>BeanMap.get(Object)</code></a>, but is faster since it avoids looking up the property meta.</div>
 <dl>
@@ -555,7 +556,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>getRaw</h4>
-<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/BeanPropertyMeta.html#line.439">getRaw</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m,
+<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/BeanPropertyMeta.html#line.440">getRaw</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m,
                      <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;pName)</pre>
 <div class="block">Equivalent to calling <a href="../../../org/apache/juneau/BeanMap.html#getRaw-java.lang.Object-"><code>BeanMap.getRaw(Object)</code></a>, but is faster since it avoids looking up the property meta.</div>
 <dl>
@@ -573,7 +574,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>set</h4>
-<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/BeanPropertyMeta.html#line.502">set</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m,
+<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/BeanPropertyMeta.html#line.503">set</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m,
                   <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;pName,
                   <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;value)
            throws <a href="../../../org/apache/juneau/BeanRuntimeException.html" title="class in org.apache.juneau">BeanRuntimeException</a></pre>
@@ -597,7 +598,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>getDynaMap</h4>
-<pre>public&nbsp;<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;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.723">getDynaMap</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;bean)
+<pre>public&nbsp;<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;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.724">getDynaMap</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;bean)
                               throws <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a>,
                                      <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/IllegalAccessException.html?is-external=true" title="class or interface in java.lang">IllegalAccessException</a>,
                                      <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/InvocationTargetException.html?is-external=true" title="class or interface in java.lang.reflect">InvocationTargetException</a></pre>
@@ -622,7 +623,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>setArray</h4>
-<pre>protected&nbsp;void&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.744">setArray</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;bean,
+<pre>protected&nbsp;void&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.745">setArray</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;bean,
                         <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>&nbsp;l)
                  throws <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a>,
                         <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/IllegalAccessException.html?is-external=true" title="class or interface in java.lang">IllegalAccessException</a>,
@@ -646,7 +647,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>add</h4>
-<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.759">add</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m,
+<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.760">add</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m,
                 <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;pName,
                 <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;value)
          throws <a href="../../../org/apache/juneau/BeanRuntimeException.html" title="class in org.apache.juneau">BeanRuntimeException</a></pre>
@@ -669,7 +670,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>add</h4>
-<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.836">add</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m,
+<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.837">add</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m,
                 <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;pName,
                 <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;key,
                 <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;value)
@@ -692,7 +693,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>findAnnotations</h4>
-<pre>public&nbsp;&lt;A 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;A&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.913">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;A&gt;&nbsp;a)</pre>
+<pre>public&nbsp;&lt;A 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;A&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.914">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;A&gt;&nbsp;a)</pre>
 <div class="block">Returns all instances of the specified annotation in the hierarchy of this bean property.
  <p>
  Searches through the class hierarchy (e.g. superclasses, interfaces, packages) for all
@@ -711,7 +712,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>getAnnotation</h4>
-<pre>public&nbsp;&lt;A 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&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.941">getAnnotation</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;A&gt;&nbsp;a)</pre>
+<pre>public&nbsp;&lt;A 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&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.942">getAnnotation</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;A&gt;&nbsp;a)</pre>
 <div class="block">Returns the specified annotation on the field or methods that define this property.
  <p>
  This method will search up the parent class/interface hierarchy chain to search for the annotation on
@@ -730,7 +731,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockListLast">
 <li class="blockList">
 <h4>toString</h4>
-<pre>public&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/BeanPropertyMeta.html#line.1006">toString</a>()</pre>
+<pre>public&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/BeanPropertyMeta.html#line.1007">toString</a>()</pre>
 <dl>
 <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
 <dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a></code>&nbsp;in class&nbsp;<code><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></code></dd>