You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by me...@apache.org on 2009/05/03 15:43:07 UTC

svn commit: r771055 - /incubator/click/trunk/click/framework/src/org/apache/click/ControlRegistry.java

Author: medgar
Date: Sun May  3 13:43:07 2009
New Revision: 771055

URL: http://svn.apache.org/viewvc?rev=771055&view=rev
Log:
checkstyle updates

Modified:
    incubator/click/trunk/click/framework/src/org/apache/click/ControlRegistry.java

Modified: incubator/click/trunk/click/framework/src/org/apache/click/ControlRegistry.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/framework/src/org/apache/click/ControlRegistry.java?rev=771055&r1=771054&r2=771055&view=diff
==============================================================================
--- incubator/click/trunk/click/framework/src/org/apache/click/ControlRegistry.java (original)
+++ incubator/click/trunk/click/framework/src/org/apache/click/ControlRegistry.java Sun May  3 13:43:07 2009
@@ -370,7 +370,6 @@
          *
          * @param source the action event source
          * @param listener the event action listener
-         * @param event the specific event to trigger the action event
          */
         public void registerActionEvent(Control source, ActionListener listener) {
             Validate.notNull(source, "Null source parameter");
@@ -382,6 +381,8 @@
 
         /**
          * Checks if any Action Events have been registered.
+         *
+         * @return true if the registry has any Action Events registered
          */
         public boolean hasActionEvents() {
             if (eventListenerList == null || eventListenerList.isEmpty()) {
@@ -428,6 +429,7 @@
          * Fire all the registered action events and return true if the page should
          * continue processing.
          *
+         * @param context the page request context
          * @return true if the page should continue processing or false otherwise
          */
         public boolean fireActionEvents(Context context) {