From b3f5156a0abef598a061d83792e9b647c68371f0 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Tue, 19 Apr 2011 13:27:15 +0000 Subject: [PATCH] #1410 Corrected javadoc svn changeset:18391/svn branch:6.6 --- src/com/vaadin/event/ListenerMethod.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/com/vaadin/event/ListenerMethod.java b/src/com/vaadin/event/ListenerMethod.java index 11b22c4db8..161aff0fb6 100644 --- a/src/com/vaadin/event/ListenerMethod.java +++ b/src/com/vaadin/event/ListenerMethod.java @@ -163,8 +163,8 @@ public class ListenerMethod implements EventListener, Serializable { * will not be passed to the trigger method, though it is still * called. * @throws java.lang.IllegalArgumentException - * if method is not a member of - * listener . + * if method is not a member of target + * . */ public ListenerMethod(Class eventType, Object target, Method method, Object[] arguments, int eventArgumentIndex) @@ -223,7 +223,7 @@ public class ListenerMethod implements EventListener, Serializable { * called. * @throws java.lang.IllegalArgumentException * unless exactly one match methodName is found in - * listener. + * target. */ public ListenerMethod(Class eventType, Object target, String methodName, Object[] arguments, int eventArgumentIndex) @@ -283,8 +283,8 @@ public class ListenerMethod implements EventListener, Serializable { * @param arguments * the arguments to be passed to the trigger method. * @throws java.lang.IllegalArgumentException - * if method is not a member of - * listener . + * if method is not a member of target + * . */ public ListenerMethod(Class eventType, Object target, Method method, Object[] arguments) throws java.lang.IllegalArgumentException { @@ -310,7 +310,7 @@ public class ListenerMethod implements EventListener, Serializable { *

* *

- * The actual trigger method is reflected from listener, and + * The actual trigger method is reflected from target, and * java.lang.IllegalArgumentException is thrown unless exactly * one match is found. *

@@ -424,7 +424,7 @@ public class ListenerMethod implements EventListener, Serializable { * java.lang.IllegalArgumentException is thrown. * @throws java.lang.IllegalArgumentException * unless exactly one match methodName is found in - * listener. + * target. */ public ListenerMethod(Class eventType, Object target, String methodName) throws java.lang.IllegalArgumentException { -- 2.39.5