diff options
author | Leif Åstrand <leif@vaadin.com> | 2015-11-11 12:16:42 +0000 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-11-12 08:18:59 +0000 |
commit | 142f7dcebb249c9c458cdbade014212b1a9ac27d (patch) | |
tree | 381eb02b4e7ef29d8a6339a0d5e4d203738907d3 /server/src/com | |
parent | 91dcac26f683314d176a7763f53dad158c36e3df (diff) | |
download | vaadin-framework-142f7dcebb249c9c458cdbade014212b1a9ac27d.tar.gz vaadin-framework-142f7dcebb249c9c458cdbade014212b1a9ac27d.zip |
Fix outdated javadoc reference
Change-Id: I0bfae621ca71df02e5e19c33d4c21498fa86616c
Diffstat (limited to 'server/src/com')
-rw-r--r-- | server/src/com/vaadin/ui/AbstractTextField.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/com/vaadin/ui/AbstractTextField.java b/server/src/com/vaadin/ui/AbstractTextField.java index 93025ac0fd..5fbe60937a 100644 --- a/server/src/com/vaadin/ui/AbstractTextField.java +++ b/server/src/com/vaadin/ui/AbstractTextField.java @@ -510,7 +510,7 @@ public abstract class AbstractTextField extends AbstractField<String> implements /** * Each text change event in the UI causes the event to be communicated * to the application after a timeout. The length of the timeout can be - * controlled with {@link TextField#setInputEventTimeout(int)}. Only the + * controlled with {@link TextField#setTextChangeTimeout(int)}. Only the * last input event is reported to the server side if several text * change events happen during the timeout. * <p> @@ -523,7 +523,7 @@ public abstract class AbstractTextField extends AbstractField<String> implements /** * An event is triggered when there is a pause of text modifications. * The length of the pause can be modified with - * {@link TextField#setInputEventTimeout(int)}. Like with the + * {@link TextField#setTextChangeTimeout(int)}. Like with the * {@link #TIMEOUT} mode, an event is forced before * {@link ValueChangeEvent}s, even if the user did not keep a pause * while entering the text. |