Browse Source

Fixed javadoc referring to wrong class

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

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

@@ -35,7 +35,6 @@ 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;
@@ -44,6 +43,7 @@ import com.vaadin.shared.communication.SharedState;
import com.vaadin.shared.ui.ComponentStateUtil;
import com.vaadin.ui.Component.Event;
import com.vaadin.ui.HasComponents;
import com.vaadin.ui.LegacyComponent;
import com.vaadin.ui.UI;

/**
@@ -122,7 +122,7 @@ public abstract class AbstractClientConnector implements ClientConnector,
* 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
* to the client. {@link LegacyComponent}s which rely on paint
* might still need to call this or {@link #markAsDirty()} .
*/
@Deprecated

Loading…
Cancel
Save