]> source.dussan.org Git - vaadin-framework.git/commitdiff
Added javadoc
authorArtur Signell <artur.signell@itmill.com>
Tue, 9 Mar 2010 16:40:07 +0000 (16:40 +0000)
committerArtur Signell <artur.signell@itmill.com>
Tue, 9 Mar 2010 16:40:07 +0000 (16:40 +0000)
svn changeset:11730/svn branch:6.3

src/com/vaadin/tools/ReflectTools.java

index d74efba105ab43ef0349fd70956d38f863576c3d..d87fa3e084b10e5c686d9fcfda222f090bde1080 100644 (file)
@@ -2,6 +2,13 @@ package com.vaadin.tools;
 
 import java.lang.reflect.Method;
 
+/**
+ * An util class with helpers for reflection operations. Used internally by
+ * Vaadin and should not be used by application developers. Subject to change at
+ * any time.
+ * 
+ * @since 6.2
+ */
 public class ReflectTools {
     /**
      * Locates the method in the given class. Returns null if the method is not
@@ -14,7 +21,7 @@ public class ReflectTools {
      *            The name of the method
      * @param parameterTypes
      *            The parameter types for the method.
-     * @return A method reference or null if the method was not found
+     * @return A reference to the method
      */
     public static Method findMethod(Class<?> cls, String methodName,
             Class<?>... parameterTypes) {