You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by di...@apache.org on 2006/05/01 03:46:13 UTC

svn commit: r398497 - /jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/util/introspection/VelMethod.java

Author: dion
Date: Sun Apr 30 18:46:12 2006
New Revision: 398497

URL: http://svn.apache.org/viewcvs?rev=398497&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=398497&r1=398496&r2=398497&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 18:46:12 2006
@@ -17,7 +17,7 @@
 package org.apache.commons.jexl.util.introspection;
 
 /**
- * Method used for regular method invocation
+ * Method used for regular method invocation.
  * 
  * $foo.bar()
  * 
@@ -29,25 +29,25 @@
 public interface VelMethod {
     /**
      * invocation method - called when the method invocationshould be preformed
-     * and a value returned
+     * and a value returned.
      */
     Object invoke(Object o, Object[] params) throws Exception;
 
     /**
      * specifies if this VelMethod is cacheable and able to be reused for this
-     * class of object it was returned for
+     * class of object it was returned for.
      * 
      * @return true if can be reused for this class, false if not
      */
     boolean isCacheable();
 
     /**
-     * returns the method name used
+     * returns the method name used.
      */
     String getMethodName();
 
     /**
-     * returns the return type of the method invoked
+     * returns the return type of the method invoked.
      */
     Class getReturnType();
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org