http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/89e089cf/content/site/apidocs/org/apache/juneau/BeanContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanContext.html 
b/content/site/apidocs/org/apache/juneau/BeanContext.html
index 1516993..747b49e 100644
--- a/content/site/apidocs/org/apache/juneau/BeanContext.html
+++ b/content/site/apidocs/org/apache/juneau/BeanContext.html
@@ -117,17 +117,17 @@ var activeTableTab = "activeTableTab";
 </dl>
 <hr>
 <br>
-<pre>public class <a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.194">BeanContext</a>
+<pre>public class <a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.203">BeanContext</a>
 extends <a href="../../../org/apache/juneau/Context.html" title="class in 
org.apache.juneau">Context</a></pre>
 <div class="block">Core class of the Juneau architecture.
  <p>
  This class servers multiple purposes:
  <ul class='spaced-list'>
    <li>Provides the ability to wrap beans inside <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> interfaces.
-   <li>Serves as a repository for metadata on POJOs, such as associated <a 
href="../../../org/apache/juneau/transform/BeanFilter.html" title="class in 
org.apache.juneau.transform"><code>beanFilters</code></a>, <a 
href="../../../org/apache/juneau/PropertyNamer.html" title="interface in 
org.apache.juneau"><code>property namers</code></a>, etc...
-      which are used to tailor how POJOs are serialized and parsed.
+   <li>Serves as a repository for metadata on POJOs, such as associated <a 
href="../../../org/apache/juneau/transform/BeanFilter.html" title="class in 
org.apache.juneau.transform"><code>beanFilters</code></a>,
+      <a href="../../../org/apache/juneau/PropertyNamer.html" title="interface 
in org.apache.juneau"><code>property namers</code></a>, etc...  which are used 
to tailor how POJOs are serialized and parsed.
    <li>Serves as a common utility class for all <a 
href="../../../org/apache/juneau/serializer/Serializer.html" title="class in 
org.apache.juneau.serializer"><code>Serializers</code></a> and <a 
href="../../../org/apache/juneau/parser/Parser.html" title="class in 
org.apache.juneau.parser"><code>Parsers</code></a>
-         for serializing and parsing Java beans.
+      for serializing and parsing Java beans.
  </ul>
  <p>
  All serializer and parser contexts extend from this context.
@@ -136,35 +136,39 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
  Bean contexts are created through the <a 
href="../../../org/apache/juneau/PropertyStore.html#getContext-java.lang.Class-"><code>PropertyStore.getContext(Class)</code></a>
 method.
  These context objects are read-only, reusable, and thread-safe.
  The <a href="../../../org/apache/juneau/PropertyStore.html" title="class in 
org.apache.juneau"><code>PropertyStore</code></a> class will typically cache 
copies of <code>Context</code> objects based on
-   the current settings on the factory.
+ the current settings on the factory.
  <p>
  Each bean context maintains a cache of <a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau"><code>ClassMeta</code></a> objects that describe information 
about classes encountered.
  These <code>ClassMeta</code> objects are time-consuming to construct.
  Therefore, instances of <a href="../../../org/apache/juneau/BeanContext.html" 
title="class in org.apache.juneau"><code>BeanContext</code></a> that share the 
same <js>"BeanContext.*"</js> property values share
-   the same cache.  This allows for efficient reuse of <code>ClassMeta</code> 
objects so that the information about
-   classes only needs to be calculated once.
+ the same cache.  This allows for efficient reuse of <code>ClassMeta</code> 
objects so that the information about
+ classes only needs to be calculated once.
  Because of this, many of the properties defined on the <a 
href="../../../org/apache/juneau/BeanContext.html" title="class in 
org.apache.juneau"><code>BeanContext</code></a> class cannot be overridden on 
the session.
 
  <h5 class='topic'>Bean Sessions</h5>
  <p>
  Whereas <code>BeanContext</code> objects are permanent, unchangeable, cached, 
and thread-safe,
-   <a href="../../../org/apache/juneau/BeanSession.html" title="class in 
org.apache.juneau"><code>BeanSession</code></a> objects are ephemeral and not 
thread-safe.
+ <a href="../../../org/apache/juneau/BeanSession.html" title="class in 
org.apache.juneau"><code>BeanSession</code></a> objects are ephemeral and not 
thread-safe.
  They are meant to be used as quickly-constructed scratchpads for creating 
bean maps.
  <a href="../../../org/apache/juneau/BeanMap.html" title="class in 
org.apache.juneau"><code>BeanMap</code></a> objects can only be created through 
the session.
 
  <h5 class='topic'>BeanContext configuration properties</h5>
- <code>BeanContexts</code> have several configuration properties that can be 
used to tweak behavior on how beans are handled.
- These are denoted as the static <jsf>BEAN_*</jsf> fields on this class.
+ <code>BeanContexts</code> have several configuration properties that can be 
used to tweak behavior on how beans are
+ handled.  These are denoted as the static <jsf>BEAN_*</jsf> fields on this 
class.
  <p>
- Some settings (e.g. <a 
href="../../../org/apache/juneau/BeanContext.html#BEAN_beansRequireDefaultConstructor"><code>BEAN_beansRequireDefaultConstructor</code></a>)
 are used to differentiate between bean and non-bean classes.
+ Some settings (e.g. <a 
href="../../../org/apache/juneau/BeanContext.html#BEAN_beansRequireDefaultConstructor"><code>BEAN_beansRequireDefaultConstructor</code></a>)
 are used to differentiate between bean
+ and non-bean classes.
  Attempting to create a bean map around one of these objects will throw a <a 
href="../../../org/apache/juneau/BeanRuntimeException.html" title="class in 
org.apache.juneau"><code>BeanRuntimeException</code></a>.
- The purpose for this behavior is so that the serializers can identify these 
non-bean classes and convert them to plain strings using the <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"><code>Object.toString()</code></a> 
method.
+ The purpose for this behavior is so that the serializers can identify these 
non-bean classes and convert them to
+ plain strings using the <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"><code>Object.toString()</code></a> 
method.
  <p>
- Some settings (e.g. <a 
href="../../../org/apache/juneau/BeanContext.html#BEAN_beanFieldVisibility"><code>BEAN_beanFieldVisibility</code></a>)
 are used to determine what kinds of properties are detected on beans.
+ Some settings (e.g. <a 
href="../../../org/apache/juneau/BeanContext.html#BEAN_beanFieldVisibility"><code>BEAN_beanFieldVisibility</code></a>)
 are used to determine what kinds of properties are
+ detected on beans.
  <p>
  Some settings (e.g. <a 
href="../../../org/apache/juneau/BeanContext.html#BEAN_beanMapPutReturnsOldValue"><code>BEAN_beanMapPutReturnsOldValue</code></a>)
 change the runtime behavior of bean maps.
  <p>
- Settings are specified using the <a 
href="../../../org/apache/juneau/PropertyStore.html#setProperty-java.lang.String-java.lang.Object-"><code>PropertyStore.setProperty(String,
 Object)</code></a> method and related convenience methods.
+ Settings are specified using the <a 
href="../../../org/apache/juneau/PropertyStore.html#setProperty-java.lang.String-java.lang.Object-"><code>PropertyStore.setProperty(String,
 Object)</code></a> method and related convenience
+ methods.
 
  <h5 class='section'>Example:</h5>
  <p class='bcode'>
@@ -184,12 +188,14 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
  <h5 class='topic'>Bean Maps</h5>
  <p>
  <a href="../../../org/apache/juneau/BeanMap.html" title="class in 
org.apache.juneau"><code>BeanMaps</code></a> are wrappers around Java beans 
that allow properties to be retrieved and
-   set using the common <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>Map.put(Object,Object)</code></a> and <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>Map.get(Object)</code></a> 
methods.<br>
- <br>
+ set using the common <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>Map.put(Object,Object)</code></a> and <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>Map.get(Object)</code></a> 
methods.
+ <p>
  Bean maps are created in two ways...
  <ol>
-   <li> <a 
href="../../../org/apache/juneau/BeanSession.html#toBeanMap-T-"><code>BeanSession.toBeanMap()</code></a>
 - Wraps an existing bean inside a <code>Map</code> wrapper.
-   <li> <a 
href="../../../org/apache/juneau/BeanSession.html#newBeanMap-java.lang.Class-"><code>BeanSession.newBeanMap()</code></a>
 - Create a new bean instance wrapped in a <code>Map</code> wrapper.
+   <li><a 
href="../../../org/apache/juneau/BeanSession.html#toBeanMap-T-"><code>BeanSession.toBeanMap()</code></a>
 - Wraps an existing bean inside a <code>Map</code>
+      wrapper.
+   <li><a 
href="../../../org/apache/juneau/BeanSession.html#newBeanMap-java.lang.Class-"><code>BeanSession.newBeanMap()</code></a>
 - Create a new bean instance wrapped in a
+      <code>Map</code> wrapper.
  </ol>
 
  <h5 class='section'>Example:</h5>
@@ -219,8 +225,8 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 
  <h5 class='topic'>Bean Annotations</h5>
  <p>
- This package contains annotations that can be applied to
-   class definitions to override what properties are detected on a bean.
+ This package contains annotations that can be applied to class definitions to 
override what properties are detected
+ on a bean.
  <h5 class='section'>Example:</h5>
  <p class='bcode'>
    <jc>// Bean class definition where only property 'name' is detected.</jc>
@@ -237,16 +243,17 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
  <h5 class='topic'>Beans with read-only properties</h5>
  <p>
  Bean maps can also be defined on top of beans with read-only properties by 
adding a
-   <a href="../../../org/apache/juneau/annotation/BeanConstructor.html" 
title="annotation in 
org.apache.juneau.annotation"><code>@BeanConstructor</code></a> annotation to 
one of the constructors on the
-   bean class.  This will allow read-only properties to be set through 
constructor arguments.
+ <a href="../../../org/apache/juneau/annotation/BeanConstructor.html" 
title="annotation in 
org.apache.juneau.annotation"><code>@BeanConstructor</code></a> annotation to 
one of the constructors on the
+ bean class.  This will allow read-only properties to be set through 
constructor arguments.
  <p>
- When the <code>@BeanConstructor</code> annotation is present, bean 
instantiation is delayed until the call to <a 
href="../../../org/apache/juneau/BeanMap.html#getBean--"><code>BeanMap.getBean()</code></a>.
+ When the <code>@BeanConstructor</code> annotation is present, bean 
instantiation is delayed until the call to
+ <a 
href="../../../org/apache/juneau/BeanMap.html#getBean--"><code>BeanMap.getBean()</code></a>.
  Until then, bean property values are stored in a local cache until 
<code>getBean()</code> is called.
- Because of this additional caching step, parsing into read-only beans tends 
to be slower and use
-   more memory than parsing into beans with writable properties.
+ Because of this additional caching step, parsing into read-only beans tends 
to be slower and use more memory than
+ parsing into beans with writable properties.
  <p>
  Attempting to call <a 
href="../../../org/apache/juneau/BeanMap.html#put-java.lang.String-java.lang.Object-"><code>BeanMap.put(String,Object)</code></a>
 on a read-only property after calling <a 
href="../../../org/apache/juneau/BeanMap.html#getBean--"><code>BeanMap.getBean()</code></a>
-   will result in a <a 
href="../../../org/apache/juneau/BeanRuntimeException.html" title="class in 
org.apache.juneau"><code>BeanRuntimeException</code></a> being thrown.
+ will result in a <a 
href="../../../org/apache/juneau/BeanRuntimeException.html" title="class in 
org.apache.juneau"><code>BeanRuntimeException</code></a> being thrown.
  Multiple calls to <a 
href="../../../org/apache/juneau/BeanMap.html#getBean--"><code>BeanMap.getBean()</code></a>
 will return the same bean instance.
  <p>
  Beans can be defined with a combination of read-only and read-write 
properties.
@@ -255,26 +262,28 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 
  <h5 class='topic'>BeanFilters and PojoSwaps</h5>
  <p>
-   <a href="../../../org/apache/juneau/transform/BeanFilter.html" title="class 
in org.apache.juneau.transform"><code>BeanFilters</code></a> and <a 
href="../../../org/apache/juneau/transform/PojoSwap.html" title="class in 
org.apache.juneau.transform"><code>PojoSwaps</code></a> are used to tailor how 
beans and POJOs are handled.<br>
+   <a href="../../../org/apache/juneau/transform/BeanFilter.html" title="class 
in org.apache.juneau.transform"><code>BeanFilters</code></a> and <a 
href="../../../org/apache/juneau/transform/PojoSwap.html" title="class in 
org.apache.juneau.transform"><code>PojoSwaps</code></a> are used to tailor how 
beans and POJOs are handled.
    <ol class='spaced-list'>
       <li><a href="../../../org/apache/juneau/transform/BeanFilter.html" 
title="class in org.apache.juneau.transform"><code>BeanFilter</code></a> - 
Allows you to tailor handling of bean classes.
          This class can be considered a programmatic equivalent to the <a 
href="../../../org/apache/juneau/annotation/Bean.html" title="annotation in 
org.apache.juneau.annotation"><code>Bean</code></a> annotation when
          annotating classes are not possible (e.g. you don't have access to 
the source).
-         This includes specifying which properties are visible and the ability 
to programmatically override the execution of properties.
+         This includes specifying which properties are visible and the ability 
to programmatically override the
+         execution of properties.
       <li><a href="../../../org/apache/juneau/transform/PojoSwap.html" 
title="class in org.apache.juneau.transform"><code>PojoSwap</code></a> - Allows 
you to swap out non-serializable objects with serializable replacements.
    </ol>
  <p>
- See <a class='doclink' 
href='transform/package-summary.html#TOC'>org.apache.juneau.transform</a> for 
more information.
+ See <a class='doclink' 
href='transform/package-summary.html#TOC'>org.apache.juneau.transform</a> for 
more
+ information.
 
  <h5 class='topic'>ClassMetas</h5>
  <p>
- The <a href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau"><code>ClassMeta</code></a> class is a wrapper around <a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in java.lang"><code>Class</code></a> object that 
provides cached information
-   about that class (e.g. whether it's 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> or <a 
href="http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util"><code>Collection</code></a> or bean).
+ The <a href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau"><code>ClassMeta</code></a> class is a wrapper around <a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in java.lang"><code>Class</code></a> object that 
provides cached information about that
+ class (e.g. whether it's 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> or <a 
href="http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util"><code>Collection</code></a> or bean).
  <p>
- As a general rule, it's best to reuse bean contexts (and therefore 
serializers and parsers too)
-   whenever possible since it takes some time to populate the internal 
<code>ClassMeta</code> object cache.
- By reusing bean contexts, the class type metadata only needs to be calculated 
once which significantly
-   improves performance.
+ As a general rule, it's best to reuse bean contexts (and therefore 
serializers and parsers too) whenever possible
+ since it takes some time to populate the internal <code>ClassMeta</code> 
object cache.
+ By reusing bean contexts, the class type metadata only needs to be calculated 
once which significantly improves
+ performance.
  <p>
  See <a href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau"><code>ClassMeta</code></a> for more information.</div>
 </li>
@@ -352,7 +361,8 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <tr class="rowColor">
 <td class="colFirst"><code>static <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></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../org/apache/juneau/BeanContext.html#BEAN_beanMapPutReturnsOldValue">BEAN_beanMapPutReturnsOldValue</a></span></code>
-<div class="block"><b>Configuration property:</b>  <a 
href="../../../org/apache/juneau/BeanMap.html#put-java.lang.String-java.lang.Object-"><code>BeanMap.put()</code></a>
 method will return old property value.</div>
+<div class="block"><b>Configuration property:</b>  <a 
href="../../../org/apache/juneau/BeanMap.html#put-java.lang.String-java.lang.Object-"><code>BeanMap.put()</code></a>
 method will return old property
+ value.</div>
 </td>
 </tr>
 <tr class="altColor">
@@ -733,8 +743,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../org/apache/juneau/BeanContext.html#resolveClassMeta-org.apache.juneau.annotation.BeanProperty-java.lang.reflect.Type-java.util.Map-">resolveClassMeta</a></span>(<a
 href="../../../org/apache/juneau/annotation/BeanProperty.html" 
title="annotation in org.apache.juneau.annotation">BeanProperty</a>&nbsp;p,
                 <a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/Type.html?is-external=true";
 title="class or interface in java.lang.reflect">Type</a>&nbsp;t,
                 <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;&nbsp;typeVarImpls)</code>
-<div class="block">Used for determining the class type on a method or field 
where a <code>@BeanProperty</code> annotation
-   may be present.</div>
+<div class="block">Used for determining the class type on a method or field 
where a <code>@BeanProperty</code> annotation may be present.</div>
 </td>
 </tr>
 <tr id="i21" class="rowColor">
@@ -778,7 +787,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_beansRequireDefaultConstructor</h4>
-<pre>public 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/BeanContext.html#line.210">BEAN_beansRequireDefaultConstructor</a></pre>
+<pre>public 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/BeanContext.html#line.219">BEAN_beansRequireDefaultConstructor</a></pre>
 <div class="block"><b>Configuration property:</b>  Beans require no-arg 
constructors.
  <p>
  <ul>
@@ -803,7 +812,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_beansRequireSerializable</h4>
-<pre>public 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/BeanContext.html#line.226">BEAN_beansRequireSerializable</a></pre>
+<pre>public 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/BeanContext.html#line.235">BEAN_beansRequireSerializable</a></pre>
 <div class="block"><b>Configuration property:</b>  Beans require <a 
href="http://docs.oracle.com/javase/7/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io"><code>Serializable</code></a> interface.
  <p>
  <ul>
@@ -828,7 +837,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_beansRequireSettersForGetters</h4>
-<pre>public 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/BeanContext.html#line.241">BEAN_beansRequireSettersForGetters</a></pre>
+<pre>public 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/BeanContext.html#line.250">BEAN_beansRequireSettersForGetters</a></pre>
 <div class="block"><b>Configuration property:</b>  Beans require setters for 
getters.
  <p>
  <ul>
@@ -852,7 +861,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_beansRequireSomeProperties</h4>
-<pre>public 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/BeanContext.html#line.257">BEAN_beansRequireSomeProperties</a></pre>
+<pre>public 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/BeanContext.html#line.266">BEAN_beansRequireSomeProperties</a></pre>
 <div class="block"><b>Configuration property:</b>  Beans require at least one 
property.
  <p>
  <ul>
@@ -877,8 +886,9 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_beanMapPutReturnsOldValue</h4>
-<pre>public 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/BeanContext.html#line.273">BEAN_beanMapPutReturnsOldValue</a></pre>
-<div class="block"><b>Configuration property:</b>  <a 
href="../../../org/apache/juneau/BeanMap.html#put-java.lang.String-java.lang.Object-"><code>BeanMap.put()</code></a>
 method will return old property value.
+<pre>public 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/BeanContext.html#line.284">BEAN_beanMapPutReturnsOldValue</a></pre>
+<div class="block"><b>Configuration property:</b>  <a 
href="../../../org/apache/juneau/BeanMap.html#put-java.lang.String-java.lang.Object-"><code>BeanMap.put()</code></a>
 method will return old property
+ value.
  <p>
  <ul>
    <li><b>Name:</b> <js>"BeanContext.beanMapPutReturnsOldValue"</js>
@@ -887,7 +897,8 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
    <li><b>Session-overridable:</b> <jk>false</jk>
  </ul>
  <p>
- If <jk>true</jk>, then the <a 
href="../../../org/apache/juneau/BeanMap.html#put-java.lang.String-java.lang.Object-"><code>BeanMap.put()</code></a>
 method will return old property values.
+ If <jk>true</jk>, then the <a 
href="../../../org/apache/juneau/BeanMap.html#put-java.lang.String-java.lang.Object-"><code>BeanMap.put()</code></a>
 method will return old property
+ values.
  <p>
  Disabled by default because it introduces a slight performance penalty.</div>
 <dl>
@@ -902,7 +913,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_beanConstructorVisibility</h4>
-<pre>public 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/BeanContext.html#line.286">BEAN_beanConstructorVisibility</a></pre>
+<pre>public 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/BeanContext.html#line.297">BEAN_beanConstructorVisibility</a></pre>
 <div class="block"><b>Configuration property:</b>  Look for bean constructors 
with the specified minimum visibility.
  <p>
  <ul>
@@ -924,7 +935,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_beanClassVisibility</h4>
-<pre>public 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/BeanContext.html#line.302">BEAN_beanClassVisibility</a></pre>
+<pre>public 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/BeanContext.html#line.313">BEAN_beanClassVisibility</a></pre>
 <div class="block"><b>Configuration property:</b>  Look for bean classes with 
the specified minimum visibility.
  <p>
  <ul>
@@ -949,7 +960,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_beanFieldVisibility</h4>
-<pre>public 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/BeanContext.html#line.320">BEAN_beanFieldVisibility</a></pre>
+<pre>public 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/BeanContext.html#line.331">BEAN_beanFieldVisibility</a></pre>
 <div class="block"><b>Configuration property:</b>  Look for bean fields with 
the specified minimum visibility.
  <p>
  <ul>
@@ -976,7 +987,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_methodVisibility</h4>
-<pre>public 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/BeanContext.html#line.336">BEAN_methodVisibility</a></pre>
+<pre>public 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/BeanContext.html#line.347">BEAN_methodVisibility</a></pre>
 <div class="block"><b>Configuration property:</b>  Look for bean methods with 
the specified minimum visibility.
  <p>
  <ul>
@@ -1001,7 +1012,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_useJavaBeanIntrospector</h4>
-<pre>public 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/BeanContext.html#line.351">BEAN_useJavaBeanIntrospector</a></pre>
+<pre>public 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/BeanContext.html#line.362">BEAN_useJavaBeanIntrospector</a></pre>
 <div class="block"><b>Configuration property:</b>  Use Java <a 
href="http://docs.oracle.com/javase/7/docs/api/java/beans/Introspector.html?is-external=true";
 title="class or interface in java.beans"><code>Introspector</code></a> for 
determining bean properties.
  <p>
  <ul>
@@ -1025,7 +1036,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_useInterfaceProxies</h4>
-<pre>public 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/BeanContext.html#line.366">BEAN_useInterfaceProxies</a></pre>
+<pre>public 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/BeanContext.html#line.377">BEAN_useInterfaceProxies</a></pre>
 <div class="block"><b>Configuration property:</b>  Use interface proxies.
  <p>
  <ul>
@@ -1035,8 +1046,8 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
    <li><b>Session-overridable:</b> <jk>false</jk>
  </ul>
  <p>
- If <jk>true</jk>, then interfaces will be instantiated as proxy classes 
through the use of an <a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/InvocationHandler.html?is-external=true";
 title="class or interface in 
java.lang.reflect"><code>InvocationHandler</code></a>
- if there is no other way of instantiating them.</div>
+ If <jk>true</jk>, then interfaces will be instantiated as proxy classes 
through the use of an
+ <a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/InvocationHandler.html?is-external=true";
 title="class or interface in 
java.lang.reflect"><code>InvocationHandler</code></a> if there is no other way 
of instantiating them.</div>
 <dl>
 <dt><span class="seeLabel">See Also:</span></dt>
 <dd><a 
href="../../../constant-values.html#org.apache.juneau.BeanContext.BEAN_useInterfaceProxies">Constant
 Field Values</a></dd>
@@ -1049,7 +1060,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_ignoreUnknownBeanProperties</h4>
-<pre>public 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/BeanContext.html#line.381">BEAN_ignoreUnknownBeanProperties</a></pre>
+<pre>public 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/BeanContext.html#line.392">BEAN_ignoreUnknownBeanProperties</a></pre>
 <div class="block"><b>Configuration property:</b>  Ignore unknown properties.
  <p>
  <ul>
@@ -1073,7 +1084,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_ignoreUnknownNullBeanProperties</h4>
-<pre>public 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/BeanContext.html#line.396">BEAN_ignoreUnknownNullBeanProperties</a></pre>
+<pre>public 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/BeanContext.html#line.407">BEAN_ignoreUnknownNullBeanProperties</a></pre>
 <div class="block"><b>Configuration property:</b>  Ignore unknown properties 
with null values.
  <p>
  <ul>
@@ -1097,7 +1108,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_ignorePropertiesWithoutSetters</h4>
-<pre>public 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/BeanContext.html#line.411">BEAN_ignorePropertiesWithoutSetters</a></pre>
+<pre>public 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/BeanContext.html#line.422">BEAN_ignorePropertiesWithoutSetters</a></pre>
 <div class="block"><b>Configuration property:</b>  Ignore properties without 
setters.
  <p>
  <ul>
@@ -1121,7 +1132,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_ignoreInvocationExceptionsOnGetters</h4>
-<pre>public 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/BeanContext.html#line.426">BEAN_ignoreInvocationExceptionsOnGetters</a></pre>
+<pre>public 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/BeanContext.html#line.437">BEAN_ignoreInvocationExceptionsOnGetters</a></pre>
 <div class="block"><b>Configuration property:</b>  Ignore invocation errors on 
getters.
  <p>
  <ul>
@@ -1145,7 +1156,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_ignoreInvocationExceptionsOnSetters</h4>
-<pre>public 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/BeanContext.html#line.441">BEAN_ignoreInvocationExceptionsOnSetters</a></pre>
+<pre>public 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/BeanContext.html#line.452">BEAN_ignoreInvocationExceptionsOnSetters</a></pre>
 <div class="block"><b>Configuration property:</b>  Ignore invocation errors on 
setters.
  <p>
  <ul>
@@ -1169,7 +1180,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_sortProperties</h4>
-<pre>public 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/BeanContext.html#line.463">BEAN_sortProperties</a></pre>
+<pre>public 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/BeanContext.html#line.474">BEAN_sortProperties</a></pre>
 <div class="block"><b>Configuration property:</b>  Sort bean properties in 
alphabetical order.
  <p>
  <ul>
@@ -1183,7 +1194,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
  Otherwise, the natural order of the bean properties is used which is 
dependent on the
    JVM vendor.
  On IBM JVMs, the bean properties are ordered based on their ordering in the 
Java file.
- On Oracle JVMs, the bean properties are not ordered (which follows the 
offical JVM specs).
+ On Oracle JVMs, the bean properties are not ordered (which follows the 
official JVM specs).
  <p>
  This property is disabled by default so that IBM JVM users don't have to use 
<a href="../../../org/apache/juneau/annotation/Bean.html" title="annotation in 
org.apache.juneau.annotation"><code>@Bean</code></a> annotations
  to force bean properties to be in a particular order and can just alter the 
order of the fields/methods
@@ -1200,7 +1211,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_notBeanPackages</h4>
-<pre>public 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/BeanContext.html#line.491">BEAN_notBeanPackages</a></pre>
+<pre>public 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/BeanContext.html#line.502">BEAN_notBeanPackages</a></pre>
 <div class="block"><b>Configuration property:</b>  Packages whose classes 
should not be considered beans.
  <p>
  <ul>
@@ -1237,7 +1248,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_notBeanPackages_add</h4>
-<pre>public 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/BeanContext.html#line.496">BEAN_notBeanPackages_add</a></pre>
+<pre>public 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/BeanContext.html#line.507">BEAN_notBeanPackages_add</a></pre>
 <div class="block"><b>Configuration property:</b>  Add to packages whose 
classes should not be considered beans.</div>
 <dl>
 <dt><span class="seeLabel">See Also:</span></dt>
@@ -1251,7 +1262,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_notBeanPackages_remove</h4>
-<pre>public 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/BeanContext.html#line.501">BEAN_notBeanPackages_remove</a></pre>
+<pre>public 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/BeanContext.html#line.512">BEAN_notBeanPackages_remove</a></pre>
 <div class="block"><b>Configuration property:</b>  Remove from packages whose 
classes should not be considered beans.</div>
 <dl>
 <dt><span class="seeLabel">See Also:</span></dt>
@@ -1265,7 +1276,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_notBeanClasses</h4>
-<pre>public 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/BeanContext.html#line.516">BEAN_notBeanClasses</a></pre>
+<pre>public 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/BeanContext.html#line.527">BEAN_notBeanClasses</a></pre>
 <div class="block"><b>Configuration property:</b>  Classes to be excluded from 
consideration as being beans.
  <p>
  <ul>
@@ -1289,7 +1300,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_notBeanClasses_add</h4>
-<pre>public 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/BeanContext.html#line.521">BEAN_notBeanClasses_add</a></pre>
+<pre>public 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/BeanContext.html#line.532">BEAN_notBeanClasses_add</a></pre>
 <div class="block"><b>Configuration property:</b>  Add to classes that should 
not be considered beans.</div>
 <dl>
 <dt><span class="seeLabel">See Also:</span></dt>
@@ -1303,7 +1314,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_notBeanClasses_remove</h4>
-<pre>public 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/BeanContext.html#line.526">BEAN_notBeanClasses_remove</a></pre>
+<pre>public 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/BeanContext.html#line.537">BEAN_notBeanClasses_remove</a></pre>
 <div class="block"><b>Configuration property:</b>  Remove from classes that 
should not be considered beans.</div>
 <dl>
 <dt><span class="seeLabel">See Also:</span></dt>
@@ -1317,7 +1328,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_beanFilters</h4>
-<pre>public 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/BeanContext.html#line.552">BEAN_beanFilters</a></pre>
+<pre>public 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/BeanContext.html#line.563">BEAN_beanFilters</a></pre>
 <div class="block"><b>Configuration property:</b>  Bean filters to apply to 
beans.
  <p>
  <ul>
@@ -1352,7 +1363,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_beanFilters_add</h4>
-<pre>public 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/BeanContext.html#line.557">BEAN_beanFilters_add</a></pre>
+<pre>public 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/BeanContext.html#line.568">BEAN_beanFilters_add</a></pre>
 <div class="block"><b>Configuration property:</b>  Add to bean filters.</div>
 <dl>
 <dt><span class="seeLabel">See Also:</span></dt>
@@ -1366,7 +1377,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_beanFilters_remove</h4>
-<pre>public 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/BeanContext.html#line.562">BEAN_beanFilters_remove</a></pre>
+<pre>public 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/BeanContext.html#line.573">BEAN_beanFilters_remove</a></pre>
 <div class="block"><b>Configuration property:</b>  Remove from bean 
filters.</div>
 <dl>
 <dt><span class="seeLabel">See Also:</span></dt>
@@ -1380,7 +1391,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_pojoSwaps</h4>
-<pre>public 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/BeanContext.html#line.580">BEAN_pojoSwaps</a></pre>
+<pre>public 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/BeanContext.html#line.591">BEAN_pojoSwaps</a></pre>
 <div class="block"><b>Configuration property:</b>  POJO swaps to apply to Java 
objects.
  <p>
  <ul>
@@ -1407,7 +1418,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_pojoSwaps_add</h4>
-<pre>public 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/BeanContext.html#line.585">BEAN_pojoSwaps_add</a></pre>
+<pre>public 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/BeanContext.html#line.596">BEAN_pojoSwaps_add</a></pre>
 <div class="block"><b>Configuration property:</b>  Add to POJO swap 
classes.</div>
 <dl>
 <dt><span class="seeLabel">See Also:</span></dt>
@@ -1421,7 +1432,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_pojoSwaps_remove</h4>
-<pre>public 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/BeanContext.html#line.590">BEAN_pojoSwaps_remove</a></pre>
+<pre>public 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/BeanContext.html#line.601">BEAN_pojoSwaps_remove</a></pre>
 <div class="block"><b>Configuration property:</b>  Remove from POJO swap 
classes.</div>
 <dl>
 <dt><span class="seeLabel">See Also:</span></dt>
@@ -1435,7 +1446,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_implClasses</h4>
-<pre>public 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/BeanContext.html#line.606">BEAN_implClasses</a></pre>
+<pre>public 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/BeanContext.html#line.617">BEAN_implClasses</a></pre>
 <div class="block"><b>Configuration property:</b>  Implementation classes for 
interfaces and abstract classes.
  <p>
  <ul>
@@ -1460,7 +1471,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_implClasses_put</h4>
-<pre>public 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/BeanContext.html#line.611">BEAN_implClasses_put</a></pre>
+<pre>public 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/BeanContext.html#line.622">BEAN_implClasses_put</a></pre>
 <div class="block"><b>Configuration property:</b>  Add an implementation 
class.</div>
 <dl>
 <dt><span class="seeLabel">See Also:</span></dt>
@@ -1474,7 +1485,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_includeProperties</h4>
-<pre>public 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/BeanContext.html#line.634">BEAN_includeProperties</a></pre>
+<pre>public 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/BeanContext.html#line.645">BEAN_includeProperties</a></pre>
 <div class="block"><b>Configuration property:</b>  Explicitly specify visible 
bean properties.
  <p>
  <ul>
@@ -1490,8 +1501,8 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
    names.
  The key <js>"*"</js> means all bean classes.
  <p>
- For example, <code>{Bean1:<js>'foo,bar'</js>}</code> means only serialize the 
<code>foo</code> and <code>bar</code>
-   properties on the specified bean.
+ For example, <code>{Bean1:<js>'foo,bar'</js>}</code> means only serialize the 
<code>foo</code> and
+ <code>bar</code> properties on the specified bean.
  <p>
  Setting applies to specified class and all subclasses.</div>
 <dl>
@@ -1506,7 +1517,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_includeProperties_put</h4>
-<pre>public 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/BeanContext.html#line.639">BEAN_includeProperties_put</a></pre>
+<pre>public 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/BeanContext.html#line.650">BEAN_includeProperties_put</a></pre>
 <div class="block"><b>Configuration property:</b>  Explicitly specify visible 
bean properties.</div>
 <dl>
 <dt><span class="seeLabel">See Also:</span></dt>
@@ -1520,7 +1531,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_excludeProperties</h4>
-<pre>public 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/BeanContext.html#line.662">BEAN_excludeProperties</a></pre>
+<pre>public 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/BeanContext.html#line.673">BEAN_excludeProperties</a></pre>
 <div class="block"><b>Configuration property:</b>  Exclude specified 
properties from beans.
  <p>
  <ul>
@@ -1536,8 +1547,8 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
  names.
  The key <js>"*"</js> means all bean classes.
  <p>
- For example, <code>{Bean1:<js>'foo,bar'</js>}</code> means don't serialize 
the <code>foo</code> and <code>bar</code>
-   properties on the specified bean.
+ For example, <code>{Bean1:<js>'foo,bar'</js>}</code> means don't serialize 
the <code>foo</code> and
+ <code>bar</code> properties on the specified bean.
  <p>
  Setting applies to specified class and all subclasses.</div>
 <dl>
@@ -1552,7 +1563,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_excludeProperties_put</h4>
-<pre>public 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/BeanContext.html#line.667">BEAN_excludeProperties_put</a></pre>
+<pre>public 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/BeanContext.html#line.678">BEAN_excludeProperties_put</a></pre>
 <div class="block"><b>Configuration property:</b>  Exclude specified 
properties from beans.</div>
 <dl>
 <dt><span class="seeLabel">See Also:</span></dt>
@@ -1566,7 +1577,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_beanDictionary</h4>
-<pre>public 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/BeanContext.html#line.686">BEAN_beanDictionary</a></pre>
+<pre>public 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/BeanContext.html#line.699">BEAN_beanDictionary</a></pre>
 <div class="block"><b>Configuration property:</b>  Bean lookup dictionary.
  <p>
  <ul>
@@ -1579,8 +1590,10 @@ extends <a 
href="../../../org/apache/juneau/Context.html" title="class in org.ap
  This list can consist of the following class types:
  <ul>
    <li>Any bean class that specifies a value for <a 
href="../../../org/apache/juneau/annotation/Bean.html#typeName--"><code>@Bean.typeName()</code></a>.
-   <li>Any subclass of <a 
href="../../../org/apache/juneau/BeanDictionaryList.html" title="class in 
org.apache.juneau"><code>BeanDictionaryList</code></a> containing a collection 
of bean classes with type name annotations.
-   <li>Any subclass of <a 
href="../../../org/apache/juneau/BeanDictionaryMap.html" title="class in 
org.apache.juneau"><code>BeanDictionaryMap</code></a> containing a mapping of 
type names to classes without type name annotations.
+   <li>Any subclass of <a 
href="../../../org/apache/juneau/BeanDictionaryList.html" title="class in 
org.apache.juneau"><code>BeanDictionaryList</code></a> containing a collection 
of bean classes with type name
+      annotations.
+   <li>Any subclass of <a 
href="../../../org/apache/juneau/BeanDictionaryMap.html" title="class in 
org.apache.juneau"><code>BeanDictionaryMap</code></a> containing a mapping of 
type names to classes without type name
+      annotations.
  </ul></div>
 <dl>
 <dt><span class="seeLabel">See Also:</span></dt>
@@ -1594,7 +1607,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_beanDictionary_add</h4>
-<pre>public 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/BeanContext.html#line.691">BEAN_beanDictionary_add</a></pre>
+<pre>public 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/BeanContext.html#line.704">BEAN_beanDictionary_add</a></pre>
 <div class="block"><b>Configuration property:</b>  Add to bean 
dictionary.</div>
 <dl>
 <dt><span class="seeLabel">See Also:</span></dt>
@@ -1608,7 +1621,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_beanDictionary_remove</h4>
-<pre>public 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/BeanContext.html#line.696">BEAN_beanDictionary_remove</a></pre>
+<pre>public 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/BeanContext.html#line.709">BEAN_beanDictionary_remove</a></pre>
 <div class="block"><b>Configuration property:</b>  Remove from bean 
dictionary.</div>
 <dl>
 <dt><span class="seeLabel">See Also:</span></dt>
@@ -1622,7 +1635,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_beanTypePropertyName</h4>
-<pre>public 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/BeanContext.html#line.709">BEAN_beanTypePropertyName</a></pre>
+<pre>public 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/BeanContext.html#line.722">BEAN_beanTypePropertyName</a></pre>
 <div class="block"><b>Configuration property:</b>  Name to use for the bean 
type properties used to represent a bean type.
  <p>
  <ul>
@@ -1644,7 +1657,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_defaultParser</h4>
-<pre>public 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/BeanContext.html#line.723">BEAN_defaultParser</a></pre>
+<pre>public 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/BeanContext.html#line.736">BEAN_defaultParser</a></pre>
 <div class="block"><b>Configuration property:</b>  Default parser to use when 
converting <code>Strings</code> to POJOs.
  <p>
  <ul>
@@ -1667,7 +1680,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_locale</h4>
-<pre>public 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/BeanContext.html#line.737">BEAN_locale</a></pre>
+<pre>public 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/BeanContext.html#line.750">BEAN_locale</a></pre>
 <div class="block"><b>Configuration property:</b>  Locale.
  <p>
  <ul>
@@ -1690,7 +1703,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_timeZone</h4>
-<pre>public 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/BeanContext.html#line.751">BEAN_timeZone</a></pre>
+<pre>public 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/BeanContext.html#line.764">BEAN_timeZone</a></pre>
 <div class="block"><b>Configuration property:</b>  TimeZone.
  <p>
  <ul>
@@ -1713,7 +1726,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_mediaType</h4>
-<pre>public 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/BeanContext.html#line.765">BEAN_mediaType</a></pre>
+<pre>public 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/BeanContext.html#line.778">BEAN_mediaType</a></pre>
 <div class="block"><b>Configuration property:</b>  Media type.
  <p>
  <ul>
@@ -1736,7 +1749,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>BEAN_debug</h4>
-<pre>public 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/BeanContext.html#line.790">BEAN_debug</a></pre>
+<pre>public 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/BeanContext.html#line.803">BEAN_debug</a></pre>
 <div class="block"><b>Configuration property:</b>  Debug mode.
  <p>
  <ul>
@@ -1770,7 +1783,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>DEFAULT</h4>
-<pre>public static final&nbsp;<a 
href="../../../org/apache/juneau/BeanContext.html" title="class in 
org.apache.juneau">BeanContext</a> <a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.836">DEFAULT</a></pre>
+<pre>public static final&nbsp;<a 
href="../../../org/apache/juneau/BeanContext.html" title="class in 
org.apache.juneau">BeanContext</a> <a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.850">DEFAULT</a></pre>
 <div class="block">Default config.  All default settings.</div>
 </li>
 </ul>
@@ -1780,7 +1793,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockListLast">
 <li class="blockList">
 <h4>DEFAULT_SORTED</h4>
-<pre>public static final&nbsp;<a 
href="../../../org/apache/juneau/BeanContext.html" title="class in 
org.apache.juneau">BeanContext</a> <a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.839">DEFAULT_SORTED</a></pre>
+<pre>public static final&nbsp;<a 
href="../../../org/apache/juneau/BeanContext.html" title="class in 
org.apache.juneau">BeanContext</a> <a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.853">DEFAULT_SORTED</a></pre>
 <div class="block">Default config.  All default settings except sort bean 
properties.</div>
 </li>
 </ul>
@@ -1798,7 +1811,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockListLast">
 <li class="blockList">
 <h4>BeanContext</h4>
-<pre>public&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.895">BeanContext</a>(<a
 href="../../../org/apache/juneau/PropertyStore.html" title="class in 
org.apache.juneau">PropertyStore</a>&nbsp;ps)</pre>
+<pre>public&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.909">BeanContext</a>(<a
 href="../../../org/apache/juneau/PropertyStore.html" title="class in 
org.apache.juneau">PropertyStore</a>&nbsp;ps)</pre>
 <div class="block">Constructor.
  <p>
  Typically only called from <a 
href="../../../org/apache/juneau/PropertyStore.html#getContext-java.lang.Class-"><code>PropertyStore.getContext(Class)</code></a>
 or <a 
href="../../../org/apache/juneau/PropertyStore.html#getBeanContext--"><code>PropertyStore.getBeanContext()</code></a>.</div>
@@ -1822,7 +1835,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>createSession</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanSession.html" 
title="class in org.apache.juneau">BeanSession</a>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1005">createSession</a>(<a
 href="../../../org/apache/juneau/ObjectMap.html" title="class in 
org.apache.juneau">ObjectMap</a>&nbsp;op,
+<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanSession.html" 
title="class in org.apache.juneau">BeanSession</a>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1019">createSession</a>(<a
 href="../../../org/apache/juneau/ObjectMap.html" title="class in 
org.apache.juneau">ObjectMap</a>&nbsp;op,
                                  <a 
href="http://docs.oracle.com/javase/7/docs/api/java/util/Locale.html?is-external=true";
 title="class or interface in java.util">Locale</a>&nbsp;locale,
                                  <a 
href="http://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html?is-external=true";
 title="class or interface in java.util">TimeZone</a>&nbsp;timeZone,
                                  <a 
href="../../../org/apache/juneau/http/MediaType.html" title="class in 
org.apache.juneau.http">MediaType</a>&nbsp;mediaType)</pre>
@@ -1851,7 +1864,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>createSession</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanSession.html" 
title="class in org.apache.juneau">BeanSession</a>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1017">createSession</a>()</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanSession.html" 
title="class in org.apache.juneau">BeanSession</a>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1031">createSession</a>()</pre>
 <div class="block">Create a new bean session based on the properties defined 
on this context.
  <p>
  Use this method for creating sessions if you don't need to override any
@@ -1868,7 +1881,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>hasSameCache</h4>
-<pre>public final&nbsp;boolean&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1028">hasSameCache</a>(<a
 href="../../../org/apache/juneau/BeanContext.html" title="class in 
org.apache.juneau">BeanContext</a>&nbsp;bc)</pre>
+<pre>public final&nbsp;boolean&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1042">hasSameCache</a>(<a
 href="../../../org/apache/juneau/BeanContext.html" title="class in 
org.apache.juneau">BeanContext</a>&nbsp;bc)</pre>
 <div class="block">Returns <jk>true</jk> if the specified bean context shares 
the same cache as this bean context.
  Useful for testing purposes.</div>
 <dl>
@@ -1885,7 +1898,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>isNotABean</h4>
-<pre>protected final&nbsp;boolean&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1039">isNotABean</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 final&nbsp;boolean&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1053">isNotABean</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">Determines whether the specified class is ignored as a bean 
class based on the various
    exclusion parameters specified on this context class.</div>
 <dl>
@@ -1902,7 +1915,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>isBean</h4>
-<pre>public&nbsp;boolean&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1063">isBean</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>
+<pre>public&nbsp;boolean&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1077">isBean</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 a 
bean.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -1918,7 +1931,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>dumpCacheStats</h4>
-<pre>protected static&nbsp;void&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1072">dumpCacheStats</a>()</pre>
+<pre>protected static&nbsp;void&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1086">dumpCacheStats</a>()</pre>
 <div class="block">Prints meta cache statistics to 
<code>System.out</code>.</div>
 </li>
 </ul>
@@ -1928,7 +1941,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getBeanMeta</h4>
-<pre>public final&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/BeanMeta.html" title="class in 
org.apache.juneau">BeanMeta</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1091">getBeanMeta</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;c)</pre>
+<pre>public final&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/BeanMeta.html" title="class in 
org.apache.juneau">BeanMeta</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1105">getBeanMeta</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;c)</pre>
 <div class="block">Returns the <a 
href="../../../org/apache/juneau/BeanMeta.html" title="class in 
org.apache.juneau"><code>BeanMeta</code></a> class for the specified 
class.</div>
 <dl>
 <dt><span class="paramLabel">Type Parameters:</span></dt>
@@ -1947,7 +1960,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getClassMeta</h4>
-<pre>public final&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau">ClassMeta</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1105">getClassMeta</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;type)</pre>
+<pre>public final&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau">ClassMeta</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1119">getClassMeta</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;type)</pre>
 <div class="block">Construct a <code>ClassMeta</code> wrapper around 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"><code>Class</code></a> object.</div>
 <dl>
 <dt><span class="paramLabel">Type Parameters:</span></dt>
@@ -1956,7 +1969,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <dd><code>type</code> - The class to resolve.</dd>
 <dt><span class="returnLabel">Returns:</span></dt>
 <dd>If the class is not an array, returns a cached <a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau"><code>ClassMeta</code></a> object.
- Otherwise, returns a new <a href="../../../org/apache/juneau/ClassMeta.html" 
title="class in org.apache.juneau"><code>ClassMeta</code></a> object every 
time.<br></dd>
+ Otherwise, returns a new <a href="../../../org/apache/juneau/ClassMeta.html" 
title="class in org.apache.juneau"><code>ClassMeta</code></a> object every 
time.</dd>
 </dl>
 </li>
 </ul>
@@ -1966,7 +1979,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getClassMeta</h4>
-<pre>public final&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau">ClassMeta</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1174">getClassMeta</a>(<a
 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/Type.html?is-external=true";
 title="class or interface in java.lang.reflect">Type</a>&nbsp;type,
+<pre>public final&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau">ClassMeta</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1194">getClassMeta</a>(<a
 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/Type.html?is-external=true";
 title="class or interface in java.lang.reflect">Type</a>&nbsp;type,
                                            <a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/Type.html?is-external=true";
 title="class or interface in java.lang.reflect">Type</a>...&nbsp;args)</pre>
 <div class="block">Used to resolve <code>ClassMetas</code> of type 
<code>Collection</code> and <code>Map</code> that have
  <code>ClassMeta</code> values that themselves could be collections or maps.
@@ -1982,18 +1995,24 @@ extends <a 
href="../../../org/apache/juneau/Context.html" title="class in org.ap
    <li><code>getClassMeta(String.<jk>class</jk>);</code> - A normal type.
    <li><code>getClassMeta(List.<jk>class</jk>);</code> - A list containing 
objects.
    <li><code>getClassMeta(List.<jk>class</jk>, String.<jk>class</jk>);</code> 
- A list containing strings.
-   <li><code>getClassMeta(LinkedList.<jk>class</jk>, 
String.<jk>class</jk>);</code> - A linked-list containing strings.
-   <li><code>getClassMeta(LinkedList.<jk>class</jk>, 
LinkedList.<jk>class</jk>, String.<jk>class</jk>);</code> - A linked-list 
containing linked-lists of strings.
+   <li><code>getClassMeta(LinkedList.<jk>class</jk>, 
String.<jk>class</jk>);</code> - A linked-list containing
+      strings.
+   <li><code>getClassMeta(LinkedList.<jk>class</jk>, 
LinkedList.<jk>class</jk>, String.<jk>class</jk>);</code> -
+      A linked-list containing linked-lists of strings.
    <li><code>getClassMeta(Map.<jk>class</jk>);</code> - A map containing 
object keys/values.
-   <li><code>getClassMeta(Map.<jk>class</jk>, String.<jk>class</jk>, 
String.<jk>class</jk>);</code> - A map containing string keys/values.
-   <li><code>getClassMeta(Map.<jk>class</jk>, String.<jk>class</jk>, 
List.<jk>class</jk>, MyBean.<jk>class</jk>);</code> - A map containing string 
keys and values of lists containing beans.
+   <li><code>getClassMeta(Map.<jk>class</jk>, String.<jk>class</jk>, 
String.<jk>class</jk>);</code> - A map
+      containing string keys/values.
+   <li><code>getClassMeta(Map.<jk>class</jk>, String.<jk>class</jk>, 
List.<jk>class</jk>, MyBean.<jk>class</jk>);</code> -
+      A map containing string keys and values of lists containing beans.
  </ul></div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
 <dd><code>type</code> - The class to resolve.
-   <br>Can be any of the following: <a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau"><code>ClassMeta</code></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"><code>Class</code></a>, <a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/ParameterizedType.html?is-external=true";
 title="class or interface in 
java.lang.reflect"><code>ParameterizedType</code></a>, <a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/GenericArrayType.html?is-external=true";
 title="class or interface in 
java.lang.reflect"><code>GenericArrayType</code></a></dd>
+   <br>Can be any of the following: <a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau"><code>ClassMeta</code></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"><code>Class</code></a>, <a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/ParameterizedType.html?is-external=true";
 title="class or interface in 
java.lang.reflect"><code>ParameterizedType</code></a>,
+   <a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/GenericArrayType.html?is-external=true";
 title="class or interface in 
java.lang.reflect"><code>GenericArrayType</code></a></dd>
 <dd><code>args</code> - The type arguments of the class if it's a collection 
or map.
-   <br>Can be any of the following: <a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau"><code>ClassMeta</code></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"><code>Class</code></a>, <a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/ParameterizedType.html?is-external=true";
 title="class or interface in 
java.lang.reflect"><code>ParameterizedType</code></a>, <a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/GenericArrayType.html?is-external=true";
 title="class or interface in 
java.lang.reflect"><code>GenericArrayType</code></a>
+   <br>Can be any of the following: <a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau"><code>ClassMeta</code></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"><code>Class</code></a>, <a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/ParameterizedType.html?is-external=true";
 title="class or interface in 
java.lang.reflect"><code>ParameterizedType</code></a>,
+   <a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/GenericArrayType.html?is-external=true";
 title="class or interface in 
java.lang.reflect"><code>GenericArrayType</code></a>
    <br>Ignored if the main type is not a map or collection.</dd>
 <dt><span class="returnLabel">Returns:</span></dt>
 <dd>The resolved class meta.</dd>
@@ -2008,7 +2027,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getClassMetaForObject</h4>
-<pre>public final&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau">ClassMeta</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1358">getClassMetaForObject</a>(T&nbsp;o)</pre>
+<pre>public final&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau">ClassMeta</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1378">getClassMetaForObject</a>(T&nbsp;o)</pre>
 <div class="block">Shortcut for calling 
<code>getClassMeta(o.getClass())</code>.</div>
 <dl>
 <dt><span class="paramLabel">Type Parameters:</span></dt>
@@ -2026,19 +2045,18 @@ extends <a 
href="../../../org/apache/juneau/Context.html" title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>resolveClassMeta</h4>
-<pre>protected final&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau">ClassMeta</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1377">resolveClassMeta</a>(<a
 href="../../../org/apache/juneau/annotation/BeanProperty.html" 
title="annotation in org.apache.juneau.annotation">BeanProperty</a>&nbsp;p,
+<pre>protected final&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau">ClassMeta</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1396">resolveClassMeta</a>(<a
 href="../../../org/apache/juneau/annotation/BeanProperty.html" 
title="annotation in org.apache.juneau.annotation">BeanProperty</a>&nbsp;p,
                                                   <a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/Type.html?is-external=true";
 title="class or interface in java.lang.reflect">Type</a>&nbsp;t,
                                                   <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;&nbsp;typeVarImpls)</pre>
-<div class="block">Used for determining the class type on a method or field 
where a <code>@BeanProperty</code> annotation
-   may be present.</div>
+<div class="block">Used for determining the class type on a method or field 
where a <code>@BeanProperty</code> annotation may be present.</div>
 <dl>
 <dt><span class="paramLabel">Type Parameters:</span></dt>
 <dd><code>T</code> - The class type we're wrapping.</dd>
 <dt><span class="paramLabel">Parameters:</span></dt>
 <dd><code>p</code> - The property annotation on the type if there is one.</dd>
 <dd><code>t</code> - The type.</dd>
-<dd><code>typeVarImpls</code> - Contains known resolved type parameters on the 
specified class so
-   that we can result <code>ParameterizedTypes</code> and 
<code>TypeVariables</code>.<br>
+<dd><code>typeVarImpls</code> - Contains known resolved type parameters on the 
specified class so that we can result
+ <code>ParameterizedTypes</code> and <code>TypeVariables</code>.
  Can be <jk>null</jk> if the information is not known.</dd>
 <dt><span class="returnLabel">Returns:</span></dt>
 <dd>The new <code>ClassMeta</code> object wrapped around the <code>Type</code> 
object.</dd>
@@ -2051,7 +2069,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getBeanTypePropertyName</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>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1480">getBeanTypePropertyName</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>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1499">getBeanTypePropertyName</a>()</pre>
 <div class="block">Returns the type property name as defined by <a 
href="../../../org/apache/juneau/BeanContext.html#BEAN_beanTypePropertyName"><code>BEAN_beanTypePropertyName</code></a>.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -2065,7 +2083,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getBeanRegistry</h4>
-<pre>protected final&nbsp;<a 
href="../../../org/apache/juneau/BeanRegistry.html" title="class in 
org.apache.juneau">BeanRegistry</a>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1489">getBeanRegistry</a>()</pre>
+<pre>protected final&nbsp;<a 
href="../../../org/apache/juneau/BeanRegistry.html" title="class in 
org.apache.juneau">BeanRegistry</a>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1508">getBeanRegistry</a>()</pre>
 <div class="block">Returns the bean registry defined in this bean context 
defined by <a 
href="../../../org/apache/juneau/BeanContext.html#BEAN_beanDictionary"><code>BEAN_beanDictionary</code></a>.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -2079,7 +2097,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getImplClassConstructor</h4>
-<pre>protected final&nbsp;&lt;T&gt;&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;? extends 
T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1501">getImplClassConstructor</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;c,
+<pre>protected final&nbsp;&lt;T&gt;&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;? extends 
T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1520">getImplClassConstructor</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;c,
                                                                      <a 
href="../../../org/apache/juneau/Visibility.html" title="enum in 
org.apache.juneau">Visibility</a>&nbsp;v)</pre>
 <div class="block">Gets the no-arg constructor for the specified class.</div>
 <dl>
@@ -2099,7 +2117,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getIncludeProperties</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/BeanContext.html#line.1543">getIncludeProperties</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="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/BeanContext.html#line.1562">getIncludeProperties</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 <a 
href="../../../org/apache/juneau/BeanContext.html#BEAN_includeProperties"><code>BEAN_includeProperties</code></a>
 setting for the specified class.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -2115,7 +2133,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getExcludeProperties</h4>
-<pre>public&nbsp;<a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or i

<TRUNCATED>

Reply via email to