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 05:46:35 UTC

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

Author: dion
Date: Sun Apr 30 20:46:33 2006
New Revision: 398515

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

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

Modified: jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/util/introspection/VelPropertySet.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/util/introspection/VelPropertySet.java?rev=398515&r1=398514&r2=398515&view=diff
==============================================================================
--- jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/util/introspection/VelPropertySet.java (original)
+++ jakarta/commons/proper/jexl/trunk/src/java/org/apache/commons/jexl/util/introspection/VelPropertySet.java Sun Apr 30 20:46:33 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,38 +16,38 @@
 
 package org.apache.commons.jexl.util.introspection;
 
-
 /**
- *  Interface used for setting values that appear to be properties in
- *  Velocity.  Ex.
- *
- *      #set($foo.bar = "hello")
- *
+ * Interface used for setting values that appear to be properties in Velocity.
+ * Ex.
+ * 
+ * #set($foo.bar = "hello")
+ * 
  * @since 1.0
  * @author <a href="mailto:geirm@optonline.net">Geir Magnusson Jr.</a>
  * @version $Id$
  */
-public interface VelPropertySet
-{
+public interface VelPropertySet {
     /**
-     *  method used to set the value in the object
-     *
-     *  @param o Object on which the method will be called with the arg
-     *  @param arg value to be set
-     *  @return the value returned from the set operation (impl specific)
+     * method used to set the value in the object.
+     * 
+     * @param o Object on which the method will be called with the arg
+     * @param arg value to be set
+     * @return the value returned from the set operation (impl specific)
+     * @throws Exception on any error.
      */
-    public Object invoke(Object o, Object arg) throws Exception;
+    Object invoke(Object o, Object arg) throws Exception;
 
     /**
-     *  specifies if this VelPropertySet 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 VelPropertySet 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 set this 'property'
+     * returns the method name used to set this 'property'.
+     * @return the method name.
      */
-    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