Author: ehillenius
Date: Sun Nov 19 14:25:40 2006
New Revision: 476952

URL: http://svn.apache.org/viewvc?view=rev&rev=476952
Log:
sorted members and removed public (which is implicit)

Modified:
    
incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/markup/html/form/IFormSubmittingComponent.java

Modified: 
incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/markup/html/form/IFormSubmittingComponent.java
URL: 
http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/markup/html/form/IFormSubmittingComponent.java?view=diff&rev=476952&r1=476951&r2=476952
==============================================================================
--- 
incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/markup/html/form/IFormSubmittingComponent.java
 (original)
+++ 
incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/markup/html/form/IFormSubmittingComponent.java
 Sun Nov 19 14:25:40 2006
@@ -35,8 +35,14 @@
         * 
         * @return defaultFormProcessing
         */
-       public boolean getDefaultFormProcessing();
+       boolean getDefaultFormProcessing();
 
+       /**
+        * Returns the form this component submits.
+        * 
+        * @return form submitted by this component
+        */
+       Form getForm();
 
        /**
         * Returns the name that is unique to this component, at least within 
the
@@ -44,18 +50,11 @@
         * 
         * @return component name
         */
-       public String getInputName();
-       
-       /**
-        * Returns the form this component submits.
-        * 
-        * @return form submitted by this component
-        */
-       public Form getForm();
-       
+       String getInputName();
+
        /**
         * Override this method to provide special submit handling in a 
multi-button
         * form. It is called whenever the user clicks this particular button.
         */
-       public void onSubmit();
+       void onSubmit();
 }


Reply via email to