- adding some javadoc, just got caught by the Class[] vs Object[]
PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/jakarta/velocity/trunk@75476 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/java/org/apache/velocity/util/introspection/IntrospectorBase.java b/src/java/org/apache/velocity/util/introspection/IntrospectorBase.java
index 34133fc..8305713 100644
--- a/src/java/org/apache/velocity/util/introspection/IntrospectorBase.java
+++ b/src/java/org/apache/velocity/util/introspection/IntrospectorBase.java
@@ -87,7 +87,7 @@
  * @author <a href="mailto:bob@werken.com">Bob McWhirter</a>
  * @author <a href="mailto:szegedia@freemail.hu">Attila Szegedi</a>
  * @author <a href="mailto:paulo.gaspar@krankikom.de">Paulo Gaspar</a>
- * @version $Id: IntrospectorBase.java,v 1.1 2001/12/05 21:22:10 geirm Exp $
+ * @version $Id: IntrospectorBase.java,v 1.2 2001/12/05 23:43:55 jvanzyl Exp $
  */
 public class IntrospectorBase
 {   
@@ -107,6 +107,11 @@
      * Gets the method defined by <code>name</code> and
      * <code>params</code> for the Class <code>c</code>.
      *
+     * @param c Class in which the method search is taking place
+     * @param name Name of the method being searched for
+     * @param params An array of Objects (not Classes) that describe the
+     *               the parameters
+     *
      * @return The desired Method object.
      */
     public Method getMethod(Class c, String name, Object[] params)