Author: dion
Date: Sun Apr 30 20:42:52 2006
New Revision: 398513

URL: http://svn.apache.org/viewcvs?rev=398513&view=rev
Log:
Checkstyle

Modified:
    
jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/util/introspection/VelMethod.java

Modified: 
jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/util/introspection/VelMethod.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/util/introspection/VelMethod.java?rev=398513&r1=398512&r2=398513&view=diff
==============================================================================
--- 
jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/util/introspection/VelMethod.java
 (original)
+++ 
jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/util/introspection/VelMethod.java
 Sun Apr 30 20:42:52 2006
@@ -28,8 +28,13 @@
  */
 public interface VelMethod {
     /**
-     * invocation method - called when the method invocationshould be preformed
+     * invocation method - called when the method invocation should be 
performed
      * and a value returned.
+
+     * @param o the object
+     * @param params method parameters.
+     * @return the result
+     * @throws Exception on any error.
      */
     Object invoke(Object o, Object[] params) throws Exception;
 
@@ -42,12 +47,14 @@
     boolean isCacheable();
 
     /**
-     * returns the method name used.
+     * Gets the method name used.
+     * @return method name
      */
     String getMethodName();
 
     /**
      * returns the return type of the method invoked.
+     * @return return type
      */
     Class getReturnType();
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to