Browse Source

Updated javadoc (#9684)

Change-Id: I38ca8700d2c6bf0cd2b8514295de607af7c15edb
tags/7.0.0.beta10
Artur Signell 11 years ago
parent
commit
e4ee11793e
1 changed files with 7 additions and 1 deletions
  1. 7
    1
      server/src/com/vaadin/server/AbstractClientConnector.java

+ 7
- 1
server/src/com/vaadin/server/AbstractClientConnector.java View File

@@ -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

Loading…
Cancel
Save