You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2009/08/02 15:22:56 UTC

svn commit: r800068 - /commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/util/introspection/MethodKey.java

Author: sebb
Date: Sun Aug  2 13:22:56 2009
New Revision: 800068

URL: http://svn.apache.org/viewvc?rev=800068&view=rev
Log:
Javadoc fixes; add @Override tags

Modified:
    commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/util/introspection/MethodKey.java

Modified: commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/util/introspection/MethodKey.java
URL: http://svn.apache.org/viewvc/commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/util/introspection/MethodKey.java?rev=800068&r1=800067&r2=800068&view=diff
==============================================================================
--- commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/util/introspection/MethodKey.java (original)
+++ commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/util/introspection/MethodKey.java Sun Aug  2 13:22:56 2009
@@ -428,7 +428,7 @@
         }
 
         /**
-         * @see isInvocationConvertible(Class, Class, boolean)
+         * @see #isInvocationConvertible(Class, Class, boolean)
          * @param formal         the formal parameter type to which the actual
          *                       parameter type should be convertible
          * @param actual         the actual parameter type.
@@ -448,7 +448,7 @@
         }
 
         /**
-         * @see isStrictInvocationConvertible(Class, Class, boolean)
+         * @see #isStrictInvocationConvertible(Class, Class, boolean)
          * @param formal         the formal parameter type to which the actual
          *                       parameter type should be convertible
          * @param actual         the actual parameter type.
@@ -608,6 +608,7 @@
      * The parameter matching service for methods.
      */
     public static final Parameters<Method> METHODS = new Parameters<Method>() {
+        @Override
         protected Class<?>[] getParameterTypes(Method app) {
             return app.getParameterTypes();
         }
@@ -618,6 +619,7 @@
      * The parameter matching service for constructors.
      */
     public static final Parameters<Constructor<?>> CONSTRUCTORS = new Parameters<Constructor<?>>() {
+        @Override
         protected Class<?>[] getParameterTypes(Constructor<?> app) {
             return app.getParameterTypes();
         }