]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed javadoc referring to wrong class 75/375/1
authorArtur Signell <artur@vaadin.com>
Fri, 23 Nov 2012 18:17:54 +0000 (20:17 +0200)
committerArtur Signell <artur@vaadin.com>
Fri, 23 Nov 2012 18:17:54 +0000 (20:17 +0200)
Change-Id: Ie79a600aad9c5bff68d927011679fd15bdf51e4b

server/src/com/vaadin/server/AbstractClientConnector.java

index cce73d0fa642c8f58ff170a9890ffd1c1ab80e4b..cb467563017aade584779aa7a6ff3efbf0e992ec 100644 (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