summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2012-11-21 13:25:29 +0000
committerVaadin Code Review <review@vaadin.com>2012-11-21 13:25:29 +0000
commit35a12aa1e9da359e2cbec9a15e195c90f0e29d52 (patch)
treecf0911f248680a62a3afcd29c9530ce8834bfdc0
parentd9ae81ededc0371b811b377b1fd7e7c29a2fa532 (diff)
parentdb8acda48f638838c6c3f8f00e63e4b4595d603a (diff)
downloadvaadin-framework-35a12aa1e9da359e2cbec9a15e195c90f0e29d52.tar.gz
vaadin-framework-35a12aa1e9da359e2cbec9a15e195c90f0e29d52.zip
Merge "Updated ServerConnector javadoc (#10304)"
-rw-r--r--client/src/com/vaadin/client/ServerConnector.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/client/src/com/vaadin/client/ServerConnector.java b/client/src/com/vaadin/client/ServerConnector.java
index 85eeab29ff..c5f42d3bd0 100644
--- a/client/src/com/vaadin/client/ServerConnector.java
+++ b/client/src/com/vaadin/client/ServerConnector.java
@@ -169,6 +169,11 @@ public interface ServerConnector extends Connector {
/**
* Gets the current shared state of the connector.
*
+ * Note that state is considered an internal part of the connector. You
+ * should not rely on the state object outside of the connector who owns it.
+ * If you depend on the state of other connectors you should use their
+ * public API instead of their state object directly.
+ *
* @since 7.0.
* @return state The shared state object. Can be any sub type of
* {@link SharedState}. Never null.