diff options
Diffstat (limited to 'server/src/main/java/com/vaadin/util/ReflectTools.java')
-rw-r--r-- | server/src/main/java/com/vaadin/util/ReflectTools.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/server/src/main/java/com/vaadin/util/ReflectTools.java b/server/src/main/java/com/vaadin/util/ReflectTools.java index 2e2d3fe238..ad1aae1a69 100644 --- a/server/src/main/java/com/vaadin/util/ReflectTools.java +++ b/server/src/main/java/com/vaadin/util/ReflectTools.java @@ -1,12 +1,12 @@ /* * Copyright 2000-2014 Vaadin Ltd. - * + * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the @@ -25,7 +25,7 @@ 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 implements Serializable { @@ -33,7 +33,7 @@ public class ReflectTools implements Serializable { * Locates the method in the given class. Returns null if the method is not * found. Throws an ExceptionInInitializerError if there is a problem * locating the method as this is mainly called from static blocks. - * + * * @param cls * Class that contains the method * @param methodName @@ -59,7 +59,7 @@ public class ReflectTools implements Serializable { * <p> * Uses getter if present, otherwise tries to access even private fields * directly. - * + * * @param object * The object containing the field * @param field @@ -101,7 +101,7 @@ public class ReflectTools implements Serializable { * Uses getter if a getter for the correct return type is present, otherwise * tries to access even private fields directly. If the java field is not * assignable to the property type throws an IllegalArgumentException. - * + * * @param object * The object containing the field * @param field @@ -149,7 +149,7 @@ public class ReflectTools implements Serializable { * <p> * Uses setter if present, otherwise tries to access even private fields * directly. - * + * * @param object * The object containing the field * @param field |