You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2010/06/04 17:14:13 UTC

svn commit: r951439 - /myfaces/tobago/trunk/tobago-extension/tobago-facelets/src/main/java/org/apache/myfaces/tobago/facelets/SupportsRenderedPartiallyRule.java

Author: bommel
Date: Fri Jun  4 15:14:13 2010
New Revision: 951439

URL: http://svn.apache.org/viewvc?rev=951439&view=rev
Log:
(TOBAGO-637) property renderedPartially

Modified:
    myfaces/tobago/trunk/tobago-extension/tobago-facelets/src/main/java/org/apache/myfaces/tobago/facelets/SupportsRenderedPartiallyRule.java

Modified: myfaces/tobago/trunk/tobago-extension/tobago-facelets/src/main/java/org/apache/myfaces/tobago/facelets/SupportsRenderedPartiallyRule.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-extension/tobago-facelets/src/main/java/org/apache/myfaces/tobago/facelets/SupportsRenderedPartiallyRule.java?rev=951439&r1=951438&r2=951439&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-extension/tobago-facelets/src/main/java/org/apache/myfaces/tobago/facelets/SupportsRenderedPartiallyRule.java (original)
+++ myfaces/tobago/trunk/tobago-extension/tobago-facelets/src/main/java/org/apache/myfaces/tobago/facelets/SupportsRenderedPartiallyRule.java Fri Jun  4 15:14:13 2010
@@ -34,7 +34,7 @@ public class SupportsRenderedPartiallyRu
   public static final SupportsRenderedPartiallyRule INSTANCE = new SupportsRenderedPartiallyRule();
 
   public Metadata applyRule(String name, TagAttribute attribute, MetadataTarget metadataTarget) {
-    if (metadataTarget.isTargetInstanceOf(SupportsRenderedPartiallyRule.class)) {
+    if (metadataTarget.isTargetInstanceOf(SupportsRenderedPartially.class)) {
       if (Attributes.RENDERED_PARTIALLY.equals(name)) {
         return new SupportsRenderedPartiallyMapper(attribute);
       }