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:45:22 UTC

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

Author: dion
Date: Sun Apr 30 18:45:21 2006
New Revision: 398496

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

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

Modified: jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/util/introspection/VelPropertyGet.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/util/introspection/VelPropertyGet.java?rev=398496&r1=398495&r2=398496&view=diff
==============================================================================
--- jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/util/introspection/VelPropertyGet.java (original)
+++ jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/util/introspection/VelPropertyGet.java Sun Apr 30 18:45:21 2006
@@ -1,12 +1,12 @@
 /*
  * Copyright 2002,2004 The Apache Software Foundation.
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -16,35 +16,33 @@
 
 package org.apache.commons.jexl.util.introspection;
 
-
 /**
- *  Interface defining a 'getter'.  For uses when looking for resolution of
- *  property references
- *
- *       $foo.bar
- *
+ * Interface defining a 'getter'. For uses when looking for resolution of
+ * property references
+ * 
+ * $foo.bar
+ * 
  * @since 1.0
  * @author <a href="mailto:geirm@optonline.net">Geir Magnusson Jr.</a>
  * @version $Id$
  */
-public interface VelPropertyGet
-{
+public interface VelPropertyGet {
     /**
-     *  invocation method - called when the 'get action' should be
-     *  preformed and a value returned
+     * invocation method - called when the 'get action' should be performed and
+     * a value returned.
      */
-    public Object invoke(Object o) throws Exception;
+    Object invoke(Object o) throws Exception;
 
     /**
-     *  specifies if this VelPropertyGet is cacheable and able to be
-     *  reused for this class of object it was returned for
-     *
-     *  @return true if can be reused for this class, false if not
+     * specifies if this VelPropertyGet is cacheable and able to be reused for
+     * this class of object it was returned for.
+     * 
+     * @return true if can be reused for this class, false if not
      */
-    public boolean isCacheable();
+    boolean isCacheable();
 
     /**
-     *  returns the method name used to return this 'property'
+     * returns the method name used to return this 'property'.
      */
-    public String getMethodName();
+    String getMethodName();
 }



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