http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/2fd81719/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 d94990d..542df8e 100644
--- a/content/site/apidocs/org/apache/juneau/BeanContext.html
+++ b/content/site/apidocs/org/apache/juneau/BeanContext.html
@@ -153,7 +153,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
  <p>
    Settings are specified using the <a 
href="../../../org/apache/juneau/ContextFactory.html#setProperty-java.lang.String-java.lang.Object-"><code>ContextFactory.setProperty(String,
 Object)</code></a> method and related convenience methods.
 
- <h6 class='topic'>Examples</h6>
+ <h6 class='topic'>Example:</h6>
  <p class='bcode'>
    <jc>// Construct a context from scratch.</jc>
    BeanContext beanContext = ContextFactory.<jsm>create</jsm>()
@@ -364,7 +364,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
    </ol>
 
 
- <h6 class='topic'>Examples</h6>
+ <h6 class='topic'>Example:</h6>
  <p class='bcode'>
    <jc>// A sample bean class</jc>
    <jk>public class</jk> Person {
@@ -391,10 +391,10 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
  <p>
    This package contains annotations that can be applied to
    class definitions to override what properties are detected on a bean.
- <h6 class='topic'>Examples</h6>
+ <h6 class='topic'>Example:</h6>
  <p class='bcode'>
    <jc>// Bean class definition where only property 'name' is detected.</jc>
-   <ja>&#64;Bean</ja>(properties={<js>"name"</js>})
+   <ja>&#64;Bean</ja>(properties=<js>"name"</js>)
    <jk>public class</jk> Person {
       <jk>public</jk> String getName();
       <jk>public void</jk> setName(String name);
@@ -1938,20 +1938,16 @@ extends <a 
href="../../../org/apache/juneau/Context.html" title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>forBean</h4>
-<pre>public&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/BeanMap.html" title="class in 
org.apache.juneau">BeanMap</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1095">forBean</a>(T&nbsp;o)</pre>
+<pre>public&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/BeanMap.html" title="class in 
org.apache.juneau">BeanMap</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1091">forBean</a>(T&nbsp;o)</pre>
 <div class="block">Wraps an object inside a <a 
href="../../../org/apache/juneau/BeanMap.html" title="class in 
org.apache.juneau"><code>BeanMap</code></a> object (i.e. a modifiable <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>).
  <p>
    If object is not a true bean, then throws a <a 
href="../../../org/apache/juneau/BeanRuntimeException.html" title="class in 
org.apache.juneau"><code>BeanRuntimeException</code></a> with an explanation of 
why it's not a bean.
 
- <dl>
-   <dt>Example:</dt>
-   <dd>
+ <h6 class='topic'>Example:</h6>
  <p class='bcode'>
    <jc>// Construct a bean map around a bean instance</jc>
    BeanMap&lt;Person&gt; bm = 
BeanContext.<jsf>DEFAULT</jsf>.forBean(<jk>new</jk> Person());
- </p>
-   </dd>
- </dl></div>
+ </p></div>
 <dl>
 <dt><span class="paramLabel">Type Parameters:</span></dt>
 <dd><code>T</code> - The class of the object being wrapped.</dd>
@@ -1968,7 +1964,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.1105">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.1101">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">Determines whether the specified object matches the 
requirements on this context of being a bean.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -1984,7 +1980,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.1117">isBean</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;boolean&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1113">isBean</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 matches the 
requirements on this context of being a bean.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -2002,7 +1998,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>forBean</h4>
-<pre>public&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/BeanMap.html" title="class in 
org.apache.juneau">BeanMap</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1149">forBean</a>(T&nbsp;o,
+<pre>public&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/BeanMap.html" title="class in 
org.apache.juneau">BeanMap</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1141">forBean</a>(T&nbsp;o,
                               <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;? super T&gt;&nbsp;c)
                        throws <a 
href="../../../org/apache/juneau/BeanRuntimeException.html" title="class in 
org.apache.juneau">BeanRuntimeException</a></pre>
 <div class="block">Wraps an object inside a <a 
href="../../../org/apache/juneau/BeanMap.html" title="class in 
org.apache.juneau"><code>BeanMap</code></a> object (i.e.: a modifiable <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>)
@@ -2010,18 +2006,14 @@ extends <a 
href="../../../org/apache/juneau/Context.html" title="class in org.ap
  <p>
    If object is not a true bean, throws a <a 
href="../../../org/apache/juneau/BeanRuntimeException.html" title="class in 
org.apache.juneau"><code>BeanRuntimeException</code></a> with an explanation of 
why it's not a bean.
 
- <dl>
-   <dt>Example:</dt>
-   <dd>
+ <h6 class='topic'>Example:</h6>
  <p class='bcode'>
    <jc>// Construct a bean map for new bean using only properties defined in a 
superclass</jc>
    BeanMap&lt;MySubBean&gt; bm = 
BeanContext.<jsf>DEFAULT</jsf>.forBean(<jk>new</jk> MySubBean(), 
MySuperBean.<jk>class</jk>);
 
    <jc>// Construct a bean map for new bean using only properties defined in 
an interface</jc>
    BeanMap&lt;MySubBean&gt; bm = 
BeanContext.<jsf>DEFAULT</jsf>.forBean(<jk>new</jk> MySubBean(), 
MySuperInterface.<jk>class</jk>);
- </p>
-   </dd>
- </dl></div>
+ </p></div>
 <dl>
 <dt><span class="paramLabel">Type Parameters:</span></dt>
 <dd><code>T</code> - The class of the object being wrapped.</dd>
@@ -2044,20 +2036,16 @@ extends <a 
href="../../../org/apache/juneau/Context.html" title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>newBeanMap</h4>
-<pre>public&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/BeanMap.html" title="class in 
org.apache.juneau">BeanMap</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1183">newBeanMap</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&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/BeanMap.html" title="class in 
org.apache.juneau">BeanMap</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1171">newBeanMap</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">Creates a new <a 
href="../../../org/apache/juneau/BeanMap.html" title="class in 
org.apache.juneau"><code>BeanMap</code></a> object (i.e. a modifiable <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>) of the given 
class with uninitialized property values.
  <p>
    If object is not a true bean, then throws a <a 
href="../../../org/apache/juneau/BeanRuntimeException.html" title="class in 
org.apache.juneau"><code>BeanRuntimeException</code></a> with an explanation of 
why it's not a bean.
 
- <dl>
-   <dt>Example:</dt>
-   <dd>
+ <h6 class='topic'>Example:</h6>
  <p class='bcode'>
    <jc>// Construct a new bean map wrapped around a new Person object</jc>
    BeanMap&lt;Person&gt; bm = 
BeanContext.<jsf>DEFAULT</jsf>.newBeanMap(Person.<jk>class</jk>);
- </p>
-   </dd>
- </dl></div>
+ </p></div>
 <dl>
 <dt><span class="paramLabel">Type Parameters:</span></dt>
 <dd><code>T</code> - The class of the object being wrapped.</dd>
@@ -2074,7 +2062,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>newBeanMap</h4>
-<pre>public&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/BeanMap.html" title="class in 
org.apache.juneau">BeanMap</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1197">newBeanMap</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>public&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/BeanMap.html" title="class in 
org.apache.juneau">BeanMap</a>&lt;T&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1185">newBeanMap</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,
                                  <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">Same as <a 
href="../../../org/apache/juneau/BeanContext.html#newBeanMap-java.lang.Class-"><code>newBeanMap(Class)</code></a>,
 except used for instantiating inner member classes that must
    be instantiated within another class instance.</div>
@@ -2096,20 +2084,16 @@ extends <a 
href="../../../org/apache/juneau/Context.html" title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>newBean</h4>
-<pre>public&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1230">newBean</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>public&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1214">newBean</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)
               throws <a 
href="../../../org/apache/juneau/BeanRuntimeException.html" title="class in 
org.apache.juneau">BeanRuntimeException</a></pre>
 <div class="block">Creates a new empty bean of the specified type, except used 
for instantiating inner member classes that must
    be instantiated within another class instance.
 
- <dl>
-   <dt>Example:</dt>
-   <dd>
+ <h6 class='topic'>Example:</h6>
  <p class='bcode'>
    <jc>// Construct a new instance of the specified bean class</jc>
    Person p = BeanContext.<jsf>DEFAULT</jsf>.newBean(Person.<jk>class</jk>);
- </p>
-   </dd>
- </dl></div>
+ </p></div>
 <dl>
 <dt><span class="paramLabel">Type Parameters:</span></dt>
 <dd><code>T</code> - The class type of the bean being created.</dd>
@@ -2128,7 +2112,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>newBean</h4>
-<pre>public&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1245">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>public&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1229">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,
                      <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)
               throws <a 
href="../../../org/apache/juneau/BeanRuntimeException.html" title="class in 
org.apache.juneau">BeanRuntimeException</a></pre>
 <div class="block">Same as <a 
href="../../../org/apache/juneau/BeanContext.html#newBean-java.lang.Class-"><code>newBean(Class)</code></a>,
 except used for instantiating inner member classes that must
@@ -2153,7 +2137,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&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.1274">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&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.1258">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>
@@ -2172,7 +2156,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>normalizeClassMeta</h4>
-<pre>public&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.1293">normalizeClassMeta</a>(<a
 href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau">ClassMeta</a>&lt;T&gt;&nbsp;cm)</pre>
+<pre>public&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.1277">normalizeClassMeta</a>(<a
 href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau">ClassMeta</a>&lt;T&gt;&nbsp;cm)</pre>
 <div class="block">Returns the class type bound to this bean context if the 
specified class type
    is from another bean context.
  <p>
@@ -2196,7 +2180,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&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.1320">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;c)</pre>
+<pre>public&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.1304">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;c)</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>
@@ -2216,7 +2200,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getMapClassMeta</h4>
-<pre>public&nbsp;&lt;K,V,T extends <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;K,V&gt;&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.1374">getMapClassMeta</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>public&nbsp;&lt;K,V,T extends <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;K,V&gt;&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">getMapClassMeta</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/ClassMeta.html" title="class in 
org.apache.juneau">ClassMeta</a>&lt;K&gt;&nbsp;keyType,
                                                              <a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau">ClassMeta</a>&lt;V&gt;&nbsp;valueType)</pre>
 <div class="block">Construct a <code>ClassMeta</code> wrapper around 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> object.</div>
@@ -2241,7 +2225,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getMapClassMeta</h4>
-<pre>public&nbsp;&lt;K,V,T extends <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;K,V&gt;&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.1392">getMapClassMeta</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>public&nbsp;&lt;K,V,T extends <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;K,V&gt;&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.1376">getMapClassMeta</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="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;K&gt;&nbsp;keyType,
                                                              <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;V&gt;&nbsp;valueType)</pre>
 <div class="block">Construct a <code>ClassMeta</code> wrapper around 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> object.</div>
@@ -2266,7 +2250,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getMapClassMeta</h4>
-<pre>public&nbsp;&lt;T extends <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>&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.1406">getMapClassMeta</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>public&nbsp;&lt;T extends <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>&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.1390">getMapClassMeta</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="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;keyType,
                                                     <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;valueType)</pre>
 <div class="block">Construct a <code>ClassMeta</code> wrapper around 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> object.</div>
@@ -2289,7 +2273,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getCollectionClassMeta</h4>
-<pre>public&nbsp;&lt;E,T extends <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;E&gt;&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.1420">getCollectionClassMeta</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>public&nbsp;&lt;E,T extends <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;E&gt;&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.1404">getCollectionClassMeta</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/ClassMeta.html" title="class in 
org.apache.juneau">ClassMeta</a>&lt;E&gt;&nbsp;elementType)</pre>
 <div class="block">Construct a <code>ClassMeta</code> wrapper around a <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> 
object.</div>
 <dl>
@@ -2311,7 +2295,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getCollectionClassMeta</h4>
-<pre>public&nbsp;&lt;E,T extends <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;E&gt;&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.1436">getCollectionClassMeta</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>public&nbsp;&lt;E,T extends <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;E&gt;&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.1420">getCollectionClassMeta</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="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;E&gt;&nbsp;elementType)</pre>
 <div class="block">Construct a <code>ClassMeta</code> wrapper around a <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> 
object.</div>
 <dl>
@@ -2333,7 +2317,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getCollectionClassMeta</h4>
-<pre>public&nbsp;&lt;T extends <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>&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.1449">getCollectionClassMeta</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>public&nbsp;&lt;T extends <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>&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.1433">getCollectionClassMeta</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="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;elementType)</pre>
 <div class="block">Construct a <code>ClassMeta</code> wrapper around a <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> 
object.</div>
 <dl>
@@ -2354,7 +2338,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&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" 
title="class in org.apache.juneau">ClassMeta</a>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1466">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;o)</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" 
title="class in org.apache.juneau">ClassMeta</a>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1450">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;o)</pre>
 <div class="block">Constructs a ClassMeta object given the specified object 
and parameters.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -2377,7 +2361,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getClassMetas</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/BeanContext.html#line.1563">getClassMetas</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;classes)</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/BeanContext.html#line.1547">getClassMetas</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;classes)</pre>
 <div class="block">Given an array of <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> objects, 
returns an array of corresponding <a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau"><code>ClassMeta</code></a> objects.
  Constructs a new array on each call.</div>
 <dl>
@@ -2396,7 +2380,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&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.1615">getClassMetaForObject</a>(T&nbsp;o)</pre>
+<pre>public&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.1599">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>
@@ -2414,7 +2398,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getClassMeta</h4>
-<pre>protected&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.1634">getClassMeta</a>(<a
 href="../../../org/apache/juneau/annotation/BeanProperty.html" 
title="annotation in org.apache.juneau.annotation">BeanProperty</a>&nbsp;p,
+<pre>protected&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.1618">getClassMeta</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
@@ -2439,20 +2423,16 @@ extends <a 
href="../../../org/apache/juneau/Context.html" title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getClassMetaFromString</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/BeanContext.html#line.1698">getClassMetaFromString</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="../../../org/apache/juneau/ClassMeta.html" 
title="class in org.apache.juneau">ClassMeta</a>&lt;?&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1678">getClassMetaFromString</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">Converts class name strings to ClassMeta objects.
 
- <dl>
-   <dt>Example:</dt>
-   <dd>
+ <h6 class='topic'>Example:</h6>
  <ul>
    <li><js>"java.lang.String"</js>
    <li><js>"com.ibm.sample.MyBean[]"</js>
    <li><js>"java.util.HashMap<java.lang.String,java.lang.Integer>"</js>
    <li><js>"[Ljava.lang.String;"</js> (i.e. the value of 
<code>String[].<jk>class</jk>.getName()</code>)
- </ul>
-   </dd>
- </dl></div>
+ </ul></div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
 <dd><code>s</code> - The class name.</dd>
@@ -2467,7 +2447,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>findPojoSwap</h4>
-<pre>protected&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/transform/PojoSwap.html" title="class in 
org.apache.juneau.transform">PojoSwap</a>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1799">findPojoSwap</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>protected&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/transform/PojoSwap.html" title="class in 
org.apache.juneau.transform">PojoSwap</a>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1779">findPojoSwap</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/transform/PojoSwap.html" title="class in 
org.apache.juneau.transform"><code>PojoSwap</code></a> associated with the 
specified class, or <jk>null</jk> if there is no
  pojo swap associated with the class.</div>
 <dl>
@@ -2486,7 +2466,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>hasChildPojoSwaps</h4>
-<pre>protected&nbsp;boolean&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1813">hasChildPojoSwaps</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;boolean&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1793">hasChildPojoSwaps</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">Checks whether a 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 in 
this bean context.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -2502,7 +2482,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>findBeanFilter</h4>
-<pre>protected&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/transform/BeanFilter.html" title="class in 
org.apache.juneau.transform">BeanFilter</a>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1829">findBeanFilter</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>protected&nbsp;&lt;T&gt;&nbsp;<a 
href="../../../org/apache/juneau/transform/BeanFilter.html" title="class in 
org.apache.juneau.transform">BeanFilter</a>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1809">findBeanFilter</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/transform/BeanFilter.html" title="class in 
org.apache.juneau.transform"><code>BeanFilter</code></a> associated with the 
specified class, or <jk>null</jk> if there is no
  bean filter associated with the class.</div>
 <dl>
@@ -2521,7 +2501,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getBeanTypePropertyName</h4>
-<pre>public 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.1842">getBeanTypePropertyName</a>()</pre>
+<pre>public 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.1822">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>
@@ -2535,7 +2515,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getBeanDictionary</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanDictionary.html" 
title="class in org.apache.juneau">BeanDictionary</a>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1851">getBeanDictionary</a>()</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanDictionary.html" 
title="class in org.apache.juneau">BeanDictionary</a>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1831">getBeanDictionary</a>()</pre>
 <div class="block">Returns the bean dictionary 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>
@@ -2549,7 +2529,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&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.1863">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&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.1843">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>
@@ -2569,7 +2549,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>convertToType</h4>
-<pre>public&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1892">convertToType</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>public&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1872">convertToType</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,
                            <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)
                     throws <a 
href="../../../org/apache/juneau/InvalidDataConversionException.html" 
title="class in org.apache.juneau">InvalidDataConversionException</a></pre>
 <div class="block">Converts the specified value to the specified class type.
@@ -2594,7 +2574,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>convertToType</h4>
-<pre>public&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1911">convertToType</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>public&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1891">convertToType</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,
                            <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,
                            <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)
                     throws <a 
href="../../../org/apache/juneau/InvalidDataConversionException.html" 
title="class in org.apache.juneau">InvalidDataConversionException</a></pre>
@@ -2621,7 +2601,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>object</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" 
title="class in org.apache.juneau">ClassMeta</a>&lt;<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/BeanContext.html#line.1926">object</a>()</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" 
title="class in org.apache.juneau">ClassMeta</a>&lt;<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/BeanContext.html#line.1906">object</a>()</pre>
 <div class="block">Returns a reusable <a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau"><code>ClassMeta</code></a> representation for the class 
<code>Object</code>.
  <p>
  This <code>ClassMeta</code> is often used to represent "any object type" when 
an object type
@@ -2641,7 +2621,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>string</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" 
title="class in org.apache.juneau">ClassMeta</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/BeanContext.html#line.1940">string</a>()</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" 
title="class in org.apache.juneau">ClassMeta</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/BeanContext.html#line.1920">string</a>()</pre>
 <div class="block">Returns a reusable <a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau"><code>ClassMeta</code></a> representation for the class 
<code>String</code>.
  <p>
  This <code>ClassMeta</code> is often used to represent key types in maps.
@@ -2660,7 +2640,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>_class</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" 
title="class in org.apache.juneau">ClassMeta</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>&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1954">_class</a>()</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" 
title="class in org.apache.juneau">ClassMeta</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>&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.1934">_class</a>()</pre>
 <div class="block">Returns a reusable <a 
href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau"><code>ClassMeta</code></a> representation for the class 
<code>Class</code>.
  <p>
  This <code>ClassMeta</code> is often used to represent key types in maps.
@@ -2679,7 +2659,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>convertToType</h4>
-<pre>public&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.2091">convertToType</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>public&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.2071">convertToType</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,
                            <a href="../../../org/apache/juneau/ClassMeta.html" 
title="class in org.apache.juneau">ClassMeta</a>&lt;T&gt;&nbsp;type)
                     throws <a 
href="../../../org/apache/juneau/InvalidDataConversionException.html" 
title="class in org.apache.juneau">InvalidDataConversionException</a></pre>
 <div class="block">Casts the specified value into the specified type.
@@ -2826,7 +2806,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>convertToType</h4>
-<pre>public&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.2107">convertToType</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>public&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.2087">convertToType</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,
                            <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,
                            <a href="../../../org/apache/juneau/ClassMeta.html" 
title="class in org.apache.juneau">ClassMeta</a>&lt;T&gt;&nbsp;type)
                     throws <a 
href="../../../org/apache/juneau/InvalidDataConversionException.html" 
title="class in org.apache.juneau">InvalidDataConversionException</a></pre>
@@ -2853,7 +2833,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>toArray</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/BeanContext.html#line.2389">toArray</a>(<a
 href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau">ClassMeta</a>&lt;?&gt;&nbsp;type,
+<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/BeanContext.html#line.2369">toArray</a>(<a
 href="../../../org/apache/juneau/ClassMeta.html" title="class in 
org.apache.juneau">ClassMeta</a>&lt;?&gt;&nbsp;type,
                       <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;?&gt;&nbsp;list)</pre>
 <div class="block">Converts the contents of the specified list into an array.
  <p>
@@ -2877,7 +2857,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>getClassLoader</h4>
-<pre>public&nbsp;<a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/ClassLoader.html?is-external=true";
 title="class or interface in java.lang">ClassLoader</a>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.2419">getClassLoader</a>()</pre>
+<pre>public&nbsp;<a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/ClassLoader.html?is-external=true";
 title="class or interface in java.lang">ClassLoader</a>&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.2399">getClassLoader</a>()</pre>
 <div class="block">Returns the classloader associated with this bean 
context.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -2891,7 +2871,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>hashCode</h4>
-<pre>public&nbsp;int&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.2424">hashCode</a>()</pre>
+<pre>public&nbsp;int&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.2404">hashCode</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#hashCode--";
 title="class or interface in java.lang">hashCode</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>
@@ -2904,7 +2884,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <ul class="blockList">
 <li class="blockList">
 <h4>equals</h4>
-<pre>public&nbsp;boolean&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.2429">equals</a>(<a
 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object</a>&nbsp;o)</pre>
+<pre>public&nbsp;boolean&nbsp;<a 
href="../../../src-html/org/apache/juneau/BeanContext.html#line.2409">equals</a>(<a
 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object</a>&nbsp;o)</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#equals-java.lang.Object-";
 title="class or interface in java.lang">equals</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>
@@ -2917,7 +2897,7 @@ extends <a href="../../../org/apache/juneau/Context.html" 
title="class in org.ap
 <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/BeanContext.html#line.2436">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/BeanContext.html#line.2416">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/2fd81719/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 98b675a..a070947 100644
--- a/content/site/apidocs/org/apache/juneau/BeanMap.html
+++ b/content/site/apidocs/org/apache/juneau/BeanMap.html
@@ -532,7 +532,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.196">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.192">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>
@@ -543,9 +543,7 @@ implements <a 
href="../../../org/apache/juneau/Delegate.html" title="interface i
    <a 
href="../../../org/apache/juneau/annotation/BeanProperty.html#swap--"><code>@BeanProperty.swap()</code></a>
 annotation, the value being passed in must be
    a String containing an ISO8601 date-time string value.
 
- <dl>
-   <dt>Example:</dt>
-   <dd>
+ <h6 class='topic'>Example:</h6>
  <p class='bcode'>
    <jc>// Construct a bean with a 'birthDate' Date field</jc>
    Person p = <jk>new</jk> Person();
@@ -558,9 +556,7 @@ implements <a 
href="../../../org/apache/juneau/Delegate.html" title="interface i
 
    <jc>// Set the field</jc>
    myBeanMap.put(<js>"birthDate"</js>, <js>"'1901-03-03T04:05:06-5000'"</js>);
- </p>
-   </dd>
- </dl></div>
+ </p></div>
 <dl>
 <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
 <dd><code><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">put</a></code>&nbsp;in 
interface&nbsp;<code><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;</code></dd>
@@ -588,7 +584,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.228">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.224">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>
@@ -607,7 +603,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.270">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
@@ -617,9 +613,7 @@ implements <a 
href="../../../org/apache/juneau/Delegate.html" title="interface i
    <a 
href="../../../org/apache/juneau/annotation/BeanProperty.html#swap--"><code>@BeanProperty.swap()</code></a>
 annotation, this method will return a String
    containing an ISO8601 date-time string value.
 
- <dl>
-   <dt>Example:</dt>
-   <dd>
+ <h6 class='topic'>Example:</h6>
  <p class='bcode'>
    <jc>// Construct a bean with a 'birthDate' Date field</jc>
    Person p = <jk>new</jk> Person();
@@ -633,9 +627,7 @@ implements <a 
href="../../../org/apache/juneau/Delegate.html" title="interface i
 
    <jc>// Get the field as a string (i.e. "'1901-03-03T04:05:06-5000'")</jc>
    String s = myBeanMap.get(<js>"birthDate"</js>);
- </p>
-   </dd>
- </dl></div>
+ </p></div>
 <dl>
 <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
 <dd><code><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">get</a></code>&nbsp;in 
interface&nbsp;<code><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;</code></dd>
@@ -659,7 +651,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.307">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.295">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>
@@ -667,14 +659,10 @@ implements <a 
href="../../../org/apache/juneau/Delegate.html" title="interface i
    depends on the default parser specified by the <a 
href="../../../org/apache/juneau/BeanContext.html#BEAN_defaultParser"><code>BeanContext.BEAN_defaultParser</code></a>
 property
    value on the config that created the context that created this map.
 
- <dl>
-   <dt>Example:</dt>
-   <dd>
+ <h6 class='topic'>Example:</h6>
  <p class='bcode'>
    aPersonBean.load(<js>"{name:'John Smith',age:21}"</js>)
- </p>
-   </dd>
- </dl></div>
+ </p></div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
 <dd><code>input</code> - The text that will get parsed into a map and then 
added to this map.</dd>
@@ -691,7 +679,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.321">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.309">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>
@@ -714,7 +702,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.335">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.323">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>
@@ -732,7 +720,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.346">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.334">keySet</a>()</pre>
 <div class="block">Returns the names of all properties associated with the 
bean.
  <p>
    The returned set is unmodifiable.</div>
@@ -750,7 +738,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.363">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.351">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
@@ -773,7 +761,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.376">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.364">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>
@@ -789,7 +777,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.386">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.374">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>
@@ -805,7 +793,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.402">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.390">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>
@@ -826,7 +814,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.428">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.416">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>
@@ -840,7 +828,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.437">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.425">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/2fd81719/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 273ce2f..a785e2f 100644
--- a/content/site/apidocs/org/apache/juneau/BeanMapEntry.html
+++ b/content/site/apidocs/org/apache/juneau/BeanMapEntry.html
@@ -120,7 +120,7 @@ implements <a 
href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.Entry
  <p>
    This class can be used to get and set property values on a bean, or to get 
metadata on a property.
 
- <h6 class='topic'>Examples</h6>
+ <h6 class='topic'>Example:</h6>
  <p class='bcode'>
    <jc>// Construct a new bean</jc>
    Person p = <jk>new</jk> Person();

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/2fd81719/content/site/apidocs/org/apache/juneau/ClassMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ClassMeta.html 
b/content/site/apidocs/org/apache/juneau/ClassMeta.html
index 4daf1bf..bb197c4 100644
--- a/content/site/apidocs/org/apache/juneau/ClassMeta.html
+++ b/content/site/apidocs/org/apache/juneau/ClassMeta.html
@@ -117,7 +117,7 @@ var activeTableTab = "activeTableTab";
 </dl>
 <hr>
 <br>
-<pre><a href="../../../org/apache/juneau/annotation/Bean.html" 
title="annotation in org.apache.juneau.annotation">@Bean</a>(<a 
href="../../../org/apache/juneau/annotation/Bean.html#properties--">properties</a>={"innerClass","classCategory","elementType","keyType","valueType","notABeanReason","initException","beanMeta"})
+<pre><a href="../../../org/apache/juneau/annotation/Bean.html" 
title="annotation in org.apache.juneau.annotation">@Bean</a>(<a 
href="../../../org/apache/juneau/annotation/Bean.html#properties--">properties</a>="innerClass,classCategory,elementType,keyType,valueType,notABeanReason,initException,beanMeta")
 public final class <a 
href="../../../src-html/org/apache/juneau/ClassMeta.html#line.51">ClassMeta</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>
 implements <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></pre>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/2fd81719/content/site/apidocs/org/apache/juneau/MediaRange.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/MediaRange.html 
b/content/site/apidocs/org/apache/juneau/MediaRange.html
index 3b15e10..3dc615b 100644
--- a/content/site/apidocs/org/apache/juneau/MediaRange.html
+++ b/content/site/apidocs/org/apache/juneau/MediaRange.html
@@ -232,8 +232,8 @@ implements <a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/Comparabl
 <h4>getMediaType</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/MediaRange.html#line.41">getMediaType</a>()</pre>
 <div class="block">Returns the media type enclosed by this media range.
- <p>
- Examples:
+
+ <h6 class='topic'>Examples:</h6>
  <ul>
    <li><js>"text/html"</js>
    <li><js>"text/*"</js>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/2fd81719/content/site/apidocs/org/apache/juneau/ObjectList.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ObjectList.html 
b/content/site/apidocs/org/apache/juneau/ObjectList.html
index 72e190f..c507456 100644
--- a/content/site/apidocs/org/apache/juneau/ObjectList.html
+++ b/content/site/apidocs/org/apache/juneau/ObjectList.html
@@ -150,7 +150,7 @@ extends <a 
href="http://docs.oracle.com/javase/7/docs/api/java/util/LinkedList.h
    constructor is provided for converting a JSON array string directly into 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"><code>List</code></a>.  It also 
contains
    accessor methods for to avoid common typecasting when accessing elements in 
a list.
 
- <h6 class='topic'>Examples</h6>
+ <h6 class='topic'>Example:</h6>
  <p class='bcode'>
    <jc>// Construct an empty List</jc>
    List l = <jk>new</jk> ObjectList();
@@ -999,7 +999,7 @@ extends <a 
href="http://docs.oracle.com/javase/7/docs/api/java/util/LinkedList.h
 <ul class="blockList">
 <li class="blockList">
 <h4>elements</h4>
-<pre>public&nbsp;&lt;E&gt;&nbsp;<a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/Iterable.html?is-external=true";
 title="class or interface in java.lang">Iterable</a>&lt;E&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/ObjectList.html#line.491">elements</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;E&gt;&nbsp;childType)</pre>
+<pre>public&nbsp;&lt;E&gt;&nbsp;<a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/Iterable.html?is-external=true";
 title="class or interface in java.lang">Iterable</a>&lt;E&gt;&nbsp;<a 
href="../../../src-html/org/apache/juneau/ObjectList.html#line.487">elements</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;E&gt;&nbsp;childType)</pre>
 <div class="block">Creates an <a 
href="http://docs.oracle.com/javase/7/docs/api/java/lang/Iterable.html?is-external=true";
 title="class or interface in java.lang"><code>Iterable</code></a> with 
elements of the specified child type.
  <p>
  Attempts to convert the child objects to the correct type if they aren't 
already the correct type.
@@ -1009,10 +1009,8 @@ extends <a 
href="http://docs.oracle.com/javase/7/docs/api/java/util/LinkedList.h
  <p>
  See <a 
href="../../../org/apache/juneau/BeanContext.html#convertToType-java.lang.Object-org.apache.juneau.ClassMeta-"><code>BeanContext.convertToType(Object,
 ClassMeta)</code></a> for a description of valid conversions.
 
- <dl>
-   <dt>Example:</dt>
-   <dd>
-      <p class='bcode'>
+ <h6 class='topic'>Example:</h6>
+ <p class='bcode'>
    <jc>// Iterate over a list of ObjectMaps.</jc>
    ObjectList l = <jk>new</jk> ObjectList(<js>"[{foo:'bar'},{baz:123}]"</js>);
    for (ObjectMap m : l.elements(ObjectMap.<jk>class</jk>)) {
@@ -1031,9 +1029,7 @@ extends <a 
href="http://docs.oracle.com/javase/7/docs/api/java/util/LinkedList.h
    for (Person p : l.elements(Person.<jk>class</jk>)) {
       <jc>// Do something with p.</jc>
    }
-      </p>
-   </dd>
- </dl></div>
+ </p></div>
 <dl>
 <dt><span class="paramLabel">Type Parameters:</span></dt>
 <dd><code>E</code> - The child object type.</dd>
@@ -1050,7 +1046,7 @@ extends <a 
href="http://docs.oracle.com/javase/7/docs/api/java/util/LinkedList.h
 <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/ObjectList.html#line.525">getClassMeta</a>(int&nbsp;index)</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/ObjectList.html#line.521">getClassMeta</a>(int&nbsp;index)</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 the object at the 
specified index.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -1066,7 +1062,7 @@ extends <a 
href="http://docs.oracle.com/javase/7/docs/api/java/util/LinkedList.h
 <ul class="blockList">
 <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/ObjectList.html#line.542">toString</a>(<a
 href="../../../org/apache/juneau/serializer/WriterSerializer.html" 
title="class in 
org.apache.juneau.serializer">WriterSerializer</a>&nbsp;serializer)
+<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/ObjectList.html#line.538">toString</a>(<a
 href="../../../org/apache/juneau/serializer/WriterSerializer.html" 
title="class in 
org.apache.juneau.serializer">WriterSerializer</a>&nbsp;serializer)
                 throws <a 
href="../../../org/apache/juneau/serializer/SerializeException.html" 
title="class in org.apache.juneau.serializer">SerializeException</a></pre>
 <div class="block">Serialize this array to a string using the specified 
serializer.</div>
 <dl>
@@ -1085,7 +1081,7 @@ extends <a 
href="http://docs.oracle.com/javase/7/docs/api/java/util/LinkedList.h
 <ul class="blockList">
 <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/ObjectList.html#line.550">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/ObjectList.html#line.546">toString</a>()</pre>
 <div class="block">Serialize this array to JSON using the <a 
href="../../../org/apache/juneau/json/JsonSerializer.html#DEFAULT"><code>JsonSerializer.DEFAULT</code></a>
 serializer.</div>
 <dl>
 <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
@@ -1099,7 +1095,7 @@ extends <a 
href="http://docs.oracle.com/javase/7/docs/api/java/util/LinkedList.h
 <ul class="blockListLast">
 <li class="blockList">
 <h4>serializeTo</h4>
-<pre>public&nbsp;void&nbsp;<a 
href="../../../src-html/org/apache/juneau/ObjectList.html#line.566">serializeTo</a>(<a
 
href="http://docs.oracle.com/javase/7/docs/api/java/io/Writer.html?is-external=true";
 title="class or interface in java.io">Writer</a>&nbsp;w)
+<pre>public&nbsp;void&nbsp;<a 
href="../../../src-html/org/apache/juneau/ObjectList.html#line.562">serializeTo</a>(<a
 
href="http://docs.oracle.com/javase/7/docs/api/java/io/Writer.html?is-external=true";
 title="class or interface in java.io">Writer</a>&nbsp;w)
                  throws <a 
href="http://docs.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException</a>,
                         <a 
href="../../../org/apache/juneau/serializer/SerializeException.html" 
title="class in org.apache.juneau.serializer">SerializeException</a></pre>
 <div class="block">Convenience method for serializing this ObjectList to the 
specified Writer using

Reply via email to