You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2013/01/26 00:47:39 UTC

svn commit: r1438774 - /myfaces/core/branches/2.2.x/impl/src/main/java/org/apache/myfaces/view/facelets/tag/composite/ClientBehaviorRedirectEventComponentWrapper.java

Author: lu4242
Date: Fri Jan 25 23:47:39 2013
New Revision: 1438774

URL: http://svn.apache.org/viewvc?rev=1438774&view=rev
Log:
MYFACES-3686 Implement f:passThroughAttribute and f:passThroughAttributes 

Modified:
    myfaces/core/branches/2.2.x/impl/src/main/java/org/apache/myfaces/view/facelets/tag/composite/ClientBehaviorRedirectEventComponentWrapper.java

Modified: myfaces/core/branches/2.2.x/impl/src/main/java/org/apache/myfaces/view/facelets/tag/composite/ClientBehaviorRedirectEventComponentWrapper.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2.2.x/impl/src/main/java/org/apache/myfaces/view/facelets/tag/composite/ClientBehaviorRedirectEventComponentWrapper.java?rev=1438774&r1=1438773&r2=1438774&view=diff
==============================================================================
--- myfaces/core/branches/2.2.x/impl/src/main/java/org/apache/myfaces/view/facelets/tag/composite/ClientBehaviorRedirectEventComponentWrapper.java (original)
+++ myfaces/core/branches/2.2.x/impl/src/main/java/org/apache/myfaces/view/facelets/tag/composite/ClientBehaviorRedirectEventComponentWrapper.java Fri Jan 25 23:47:39 2013
@@ -437,4 +437,16 @@ public class ClientBehaviorRedirectEvent
     protected void removeFacesListener(FacesListener listener)
     {
     }
+
+    @Override
+    public Map<String, Object> getPassThroughAttributes()
+    {
+        return getWrapped().getPassThroughAttributes();
+    }
+
+    @Override
+    public Map<String, Object> getPassThroughAttributes(boolean create)
+    {
+        return getWrapped().getPassThroughAttributes(create);
+    }
 }