You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sc...@apache.org on 2005/07/11 14:55:04 UTC

svn commit: r210115 - /myfaces/examples/trunk/standard/src/java/org/apache/myfaces/examples/listexample/DataScrollerActionListener.java

Author: schof
Date: Mon Jul 11 05:55:03 2005
New Revision: 210115

URL: http://svn.apache.org/viewcvs?rev=210115&view=rev
Log:
Additional MYFACES-228 patch by Mathias Broekelmann

Added:
    myfaces/examples/trunk/standard/src/java/org/apache/myfaces/examples/listexample/DataScrollerActionListener.java

Added: myfaces/examples/trunk/standard/src/java/org/apache/myfaces/examples/listexample/DataScrollerActionListener.java
URL: http://svn.apache.org/viewcvs/myfaces/examples/trunk/standard/src/java/org/apache/myfaces/examples/listexample/DataScrollerActionListener.java?rev=210115&view=auto
==============================================================================
--- myfaces/examples/trunk/standard/src/java/org/apache/myfaces/examples/listexample/DataScrollerActionListener.java (added)
+++ myfaces/examples/trunk/standard/src/java/org/apache/myfaces/examples/listexample/DataScrollerActionListener.java Mon Jul 11 05:55:03 2005
@@ -0,0 +1,25 @@
+/**
+ * 
+ */
+package org.apache.myfaces.examples.listexample;
+
+import javax.faces.event.AbortProcessingException;
+import javax.faces.event.ActionEvent;
+import javax.faces.event.ActionListener;
+
+/**
+ * @author MBroekelmann
+ *
+ */
+public class DataScrollerActionListener implements ActionListener
+{
+
+	/**
+	 * @see javax.faces.event.ActionListener#processAction(javax.faces.event.ActionEvent)
+	 */
+	public void processAction(ActionEvent actionEvent) throws AbortProcessingException
+	{
+		System.out.println("process dataScroller ActionEvent");
+	}
+
+}