From: Artur Signell Date: Tue, 9 Mar 2010 16:40:07 +0000 (+0000) Subject: Added javadoc X-Git-Tag: 6.7.0.beta1~1963 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d380ea10063b04731726275014b0e0db7c80a3d5;p=vaadin-framework.git Added javadoc svn changeset:11730/svn branch:6.3 --- 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) {