aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorMarc Englund <marc@vaadin.com>2012-11-23 16:47:08 +0000
committerVaadin Code Review <review@vaadin.com>2012-11-23 16:47:08 +0000
commit7077cdacf8f28b5658e705598c794d7843544707 (patch)
tree765296b4948365c1af355ee510a5ad65bcf922e7 /server
parente4206c2d2aaed646dbeeb052f88e5ec4f8607dac (diff)
parente4ee11793e0d5ba4ca0a18c0e4e8d014591ccb7a (diff)
downloadvaadin-framework-7077cdacf8f28b5658e705598c794d7843544707.tar.gz
vaadin-framework-7077cdacf8f28b5658e705598c794d7843544707.zip
Merge "Updated javadoc (#9684)"
Diffstat (limited to 'server')
-rw-r--r--server/src/com/vaadin/server/AbstractClientConnector.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/server/src/com/vaadin/server/AbstractClientConnector.java b/server/src/com/vaadin/server/AbstractClientConnector.java
index 70a4c342cc..cce73d0fa6 100644
--- a/server/src/com/vaadin/server/AbstractClientConnector.java
+++ b/server/src/com/vaadin/server/AbstractClientConnector.java
@@ -35,6 +35,7 @@ import java.util.logging.Logger;
import org.json.JSONException;
import org.json.JSONObject;
+import com.vaadin.client.ui.LegacyConnector;
import com.vaadin.event.EventRouter;
import com.vaadin.event.MethodEventSource;
import com.vaadin.shared.communication.ClientRpc;
@@ -117,7 +118,12 @@ public abstract class AbstractClientConnector implements ClientConnector,
}
/**
- * @deprecated As of 7.0, use {@link #markAsDirty()} instead
+ * @deprecated As of 7.0, use {@link #markAsDirty()} instead. Note that you
+ * typically do not need to call {@link #markAsDirty()} as
+ * {@link #getState()} will mark the connector dirty and the
+ * framework will then check what, if anything, needs to be sent
+ * to the client. {@link LegacyConnector}s which rely on paint
+ * might still need to call this or {@link #markAsDirty()} .
*/
@Deprecated
@Override