diff options
author | Artur Signell <artur.signell@itmill.com> | 2010-03-09 16:40:07 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2010-03-09 16:40:07 +0000 |
commit | d380ea10063b04731726275014b0e0db7c80a3d5 (patch) | |
tree | 23015769c66db1aab600a963e0f35d0c20a2dddf /src/com/vaadin/tools | |
parent | 748eb5b96566797872fb0f25b427739a70d5e15e (diff) | |
download | vaadin-framework-d380ea10063b04731726275014b0e0db7c80a3d5.tar.gz vaadin-framework-d380ea10063b04731726275014b0e0db7c80a3d5.zip |
Added javadoc
svn changeset:11730/svn branch:6.3
Diffstat (limited to 'src/com/vaadin/tools')
-rw-r--r-- | src/com/vaadin/tools/ReflectTools.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/com/vaadin/tools/ReflectTools.java b/src/com/vaadin/tools/ReflectTools.java index d74efba105..d87fa3e084 100644 --- a/src/com/vaadin/tools/ReflectTools.java +++ b/src/com/vaadin/tools/ReflectTools.java @@ -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) { |