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 2007/11/19 11:03:01 UTC

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

Author: bommel
Date: Mon Nov 19 02:03:00 2007
New Revision: 596241

URL: http://svn.apache.org/viewvc?rev=596241&view=rev
Log:
(TOBAGO-541) ActionListener signature is restricted to SortActionEvent in SortActionSourceRule

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

Modified: myfaces/tobago/trunk/extension/facelets/src/main/java/org/apache/myfaces/tobago/facelets/SortActionSourceRule.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/extension/facelets/src/main/java/org/apache/myfaces/tobago/facelets/SortActionSourceRule.java?rev=596241&r1=596240&r2=596241&view=diff
==============================================================================
--- myfaces/tobago/trunk/extension/facelets/src/main/java/org/apache/myfaces/tobago/facelets/SortActionSourceRule.java (original)
+++ myfaces/tobago/trunk/extension/facelets/src/main/java/org/apache/myfaces/tobago/facelets/SortActionSourceRule.java Mon Nov 19 02:03:00 2007
@@ -17,14 +17,15 @@
  * limitations under the License.
  */
 
+import com.sun.facelets.FaceletContext;
+import com.sun.facelets.el.LegacyMethodBinding;
 import com.sun.facelets.tag.MetaRule;
 import com.sun.facelets.tag.Metadata;
-import com.sun.facelets.tag.TagAttribute;
 import com.sun.facelets.tag.MetadataTarget;
-import com.sun.facelets.FaceletContext;
-import com.sun.facelets.el.LegacyMethodBinding;
+import com.sun.facelets.tag.TagAttribute;
 import org.apache.myfaces.tobago.event.SortActionSource;
-import org.apache.myfaces.tobago.event.SortActionEvent;
+
+import javax.faces.event.ActionEvent;
 
 /*
  * User: bommel