diff options
author | Matti Tahvonen <matti@vaadin.com> | 2013-12-07 15:10:30 +0200 |
---|---|---|
committer | Matti Tahvonen <matti@vaadin.com> | 2013-12-17 14:37:02 +0200 |
commit | 78a6232b6b0dd2e6c89039e9ca50c164f2d9ab6a (patch) | |
tree | bc75066b3972310ceddf54d742e356ee8d364fdc /server | |
parent | 5d19da23abdf96a8df7586ebd0317fecfb6729de (diff) | |
download | vaadin-framework-78a6232b6b0dd2e6c89039e9ca50c164f2d9ab6a.tar.gz vaadin-framework-78a6232b6b0dd2e6c89039e9ca50c164f2d9ab6a.zip |
removed invalid documentation
Change-Id: I8562c1853e17d008738d759bd33f57b9b57c1c4c
Diffstat (limited to 'server')
-rw-r--r-- | server/src/com/vaadin/ui/AbstractComponent.java | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/server/src/com/vaadin/ui/AbstractComponent.java b/server/src/com/vaadin/ui/AbstractComponent.java index 61bcf00ad8..a0a87b260d 100644 --- a/server/src/com/vaadin/ui/AbstractComponent.java +++ b/server/src/com/vaadin/ui/AbstractComponent.java @@ -360,23 +360,16 @@ public abstract class AbstractComponent extends AbstractClientConnector } } - /* - * Tests if the component is in the immediate mode. Don't add a JavaDoc - * comment here, we use the default documentation from implemented - * interface. - */ public boolean isImmediate() { return getState(false).immediate; } /** - * Sets the component's immediate mode to the specified status. This method - * will trigger a {@link RepaintRequestEvent}. + * Sets the component's immediate mode to the specified status. * * @param immediate * the boolean value specifying if the component should be in the * immediate mode after the call. - * @see Component#isImmediate() */ public void setImmediate(boolean immediate) { getState().immediate = immediate; |