http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/62afb533/content/site/apidocs/src-html/org/apache/juneau/dto/jsonschema/Schema.html
----------------------------------------------------------------------
diff --git 
a/content/site/apidocs/src-html/org/apache/juneau/dto/jsonschema/Schema.html 
b/content/site/apidocs/src-html/org/apache/juneau/dto/jsonschema/Schema.html
index 3f8181a..023c575 100644
--- a/content/site/apidocs/src-html/org/apache/juneau/dto/jsonschema/Schema.html
+++ b/content/site/apidocs/src-html/org/apache/juneau/dto/jsonschema/Schema.html
@@ -234,7 +234,7 @@
 <span class="sourceLineNo">226</span>    *    The value of the 
&lt;property&gt;type&lt;/property&gt; property on this bean, or 
&lt;jk&gt;null&lt;/jk&gt; if it is not set.<a name="line.226"></a>
 <span class="sourceLineNo">227</span>    *    Can be either a {@link JsonType} 
or {@link JsonTypeArray} depending on what value was used to set it.<a 
name="line.227"></a>
 <span class="sourceLineNo">228</span>    */<a name="line.228"></a>
-<span class="sourceLineNo">229</span>   
@BeanProperty(swap=JsonTypeOrJsonTypeArraySwap.class)<a name="line.229"></a>
+<span class="sourceLineNo">229</span>   
@Swap(JsonTypeOrJsonTypeArraySwap.class)<a name="line.229"></a>
 <span class="sourceLineNo">230</span>   public Object getType() {<a 
name="line.230"></a>
 <span class="sourceLineNo">231</span>      if (typeJsonType != null)<a 
name="line.231"></a>
 <span class="sourceLineNo">232</span>         return typeJsonType;<a 
name="line.232"></a>
@@ -558,7 +558,7 @@
 <span class="sourceLineNo">550</span>    *    The value of the 
&lt;property&gt;items&lt;/property&gt; property on this bean, or 
&lt;jk&gt;null&lt;/jk&gt; if it is not set.<a name="line.550"></a>
 <span class="sourceLineNo">551</span>    *    Can be either a {@link Schema} 
or {@link SchemaArray} depending on what value was used to set it.<a 
name="line.551"></a>
 <span class="sourceLineNo">552</span>    */<a name="line.552"></a>
-<span class="sourceLineNo">553</span>   
@BeanProperty(swap=SchemaOrSchemaArraySwap.class)<a name="line.553"></a>
+<span class="sourceLineNo">553</span>   @Swap(SchemaOrSchemaArraySwap.class)<a 
name="line.553"></a>
 <span class="sourceLineNo">554</span>   public Object getItems() {<a 
name="line.554"></a>
 <span class="sourceLineNo">555</span>      if (itemsSchema != null)<a 
name="line.555"></a>
 <span class="sourceLineNo">556</span>         return itemsSchema;<a 
name="line.556"></a>
@@ -835,7 +835,7 @@
 <span class="sourceLineNo">827</span>    *    not set.<a name="line.827"></a>
 <span class="sourceLineNo">828</span>    *    Can be either a {@link Boolean} 
or {@link SchemaArray} depending on what value was used to set it.<a 
name="line.828"></a>
 <span class="sourceLineNo">829</span>    */<a name="line.829"></a>
-<span class="sourceLineNo">830</span>   
@BeanProperty(swap=BooleanOrSchemaArraySwap.class)<a name="line.830"></a>
+<span class="sourceLineNo">830</span>   
@Swap(BooleanOrSchemaArraySwap.class)<a name="line.830"></a>
 <span class="sourceLineNo">831</span>   public Object getAdditionalItems() {<a 
name="line.831"></a>
 <span class="sourceLineNo">832</span>      if (additionalItemsBoolean != 
null)<a name="line.832"></a>
 <span class="sourceLineNo">833</span>         return additionalItemsBoolean;<a 
name="line.833"></a>
@@ -1115,7 +1115,7 @@
 <span class="sourceLineNo">1107</span>    *    is not set.<a 
name="line.1107"></a>
 <span class="sourceLineNo">1108</span>    *    Can be either a {@link Boolean} 
or {@link SchemaArray} depending on what value was used to set it.<a 
name="line.1108"></a>
 <span class="sourceLineNo">1109</span>    */<a name="line.1109"></a>
-<span class="sourceLineNo">1110</span>   
@BeanProperty(swap=BooleanOrSchemaSwap.class)<a name="line.1110"></a>
+<span class="sourceLineNo">1110</span>   @Swap(BooleanOrSchemaSwap.class)<a 
name="line.1110"></a>
 <span class="sourceLineNo">1111</span>   public Object 
getAdditionalProperties() {<a name="line.1111"></a>
 <span class="sourceLineNo">1112</span>      if (additionalPropertiesBoolean != 
null)<a name="line.1112"></a>
 <span class="sourceLineNo">1113</span>         return 
additionalItemsBoolean;<a name="line.1113"></a>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/62afb533/content/site/apidocs/src-html/org/apache/juneau/html/HtmlParserSession.html
----------------------------------------------------------------------
diff --git 
a/content/site/apidocs/src-html/org/apache/juneau/html/HtmlParserSession.html 
b/content/site/apidocs/src-html/org/apache/juneau/html/HtmlParserSession.html
index f06ac97..61c944a 100644
--- 
a/content/site/apidocs/src-html/org/apache/juneau/html/HtmlParserSession.html
+++ 
b/content/site/apidocs/src-html/org/apache/juneau/html/HtmlParserSession.html
@@ -91,8 +91,8 @@
 <span class="sourceLineNo">083</span><a name="line.83"></a>
 <span class="sourceLineNo">084</span>      if (eType == null)<a 
name="line.84"></a>
 <span class="sourceLineNo">085</span>         eType = 
(ClassMeta&lt;T&gt;)object();<a name="line.85"></a>
-<span class="sourceLineNo">086</span>      PojoSwap&lt;T,Object&gt; transform 
= (PojoSwap&lt;T,Object&gt;)eType.getPojoSwap();<a name="line.86"></a>
-<span class="sourceLineNo">087</span>      ClassMeta&lt;?&gt; sType = 
eType.getSerializedClassMeta();<a name="line.87"></a>
+<span class="sourceLineNo">086</span>      PojoSwap&lt;T,Object&gt; transform 
= (PojoSwap&lt;T,Object&gt;)eType.getPojoSwap(this);<a name="line.86"></a>
+<span class="sourceLineNo">087</span>      ClassMeta&lt;?&gt; sType = 
transform == null ? eType : transform.getSwapClassMeta(this);<a 
name="line.87"></a>
 <span class="sourceLineNo">088</span>      setCurrentClass(sType);<a 
name="line.88"></a>
 <span class="sourceLineNo">089</span><a name="line.89"></a>
 <span class="sourceLineNo">090</span>      int event = r.getEventType();<a 
name="line.90"></a>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/62afb533/content/site/apidocs/src-html/org/apache/juneau/html/HtmlSchemaDocSerializerSession.html
----------------------------------------------------------------------
diff --git 
a/content/site/apidocs/src-html/org/apache/juneau/html/HtmlSchemaDocSerializerSession.html
 
b/content/site/apidocs/src-html/org/apache/juneau/html/HtmlSchemaDocSerializerSession.html
index c33472d..270926a 100644
--- 
a/content/site/apidocs/src-html/org/apache/juneau/html/HtmlSchemaDocSerializerSession.html
+++ 
b/content/site/apidocs/src-html/org/apache/juneau/html/HtmlSchemaDocSerializerSession.html
@@ -76,7 +76,7 @@
 <span class="sourceLineNo">068</span><a name="line.68"></a>
 <span class="sourceLineNo">069</span>      aType = push(attrName, eType, 
null);<a name="line.69"></a>
 <span class="sourceLineNo">070</span><a name="line.70"></a>
-<span class="sourceLineNo">071</span>      sType = 
eType.getSerializedClassMeta();<a name="line.71"></a>
+<span class="sourceLineNo">071</span>      sType = 
eType.getSerializedClassMeta(this);<a name="line.71"></a>
 <span class="sourceLineNo">072</span>      String type = null;<a 
name="line.72"></a>
 <span class="sourceLineNo">073</span><a name="line.73"></a>
 <span class="sourceLineNo">074</span>      if (sType.isEnum() || 
sType.isCharSequence() || sType.isChar())<a name="line.74"></a>
@@ -94,7 +94,7 @@
 <span class="sourceLineNo">086</span><a name="line.86"></a>
 <span class="sourceLineNo">087</span>      out.put("type", type);<a 
name="line.87"></a>
 <span class="sourceLineNo">088</span>      out.put("class", 
eType.toString());<a name="line.88"></a>
-<span class="sourceLineNo">089</span>      PojoSwap t = eType.getPojoSwap();<a 
name="line.89"></a>
+<span class="sourceLineNo">089</span>      PojoSwap t = 
eType.getPojoSwap(this);<a name="line.89"></a>
 <span class="sourceLineNo">090</span>      if (t != null)<a name="line.90"></a>
 <span class="sourceLineNo">091</span>         out.put("transform", t);<a 
name="line.91"></a>
 <span class="sourceLineNo">092</span><a name="line.92"></a>

Reply via email to