From d380ea10063b04731726275014b0e0db7c80a3d5 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Tue, 9 Mar 2010 16:40:07 +0000 Subject: [PATCH] Added javadoc svn changeset:11730/svn branch:6.3 --- src/com/vaadin/tools/ReflectTools.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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) { -- 2.39.5