diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2012-08-29 14:32:08 +0300 |
---|---|---|
committer | Johannes Dahlström <johannesd@vaadin.com> | 2012-08-29 14:32:08 +0300 |
commit | fadb44821a5b686b61d7ef4667b141947e85fa67 (patch) | |
tree | 35fff00ef0c17eb3e7f6ae613b7c39f09e53f720 /server/src/com/vaadin/ui/Embedded.java | |
parent | 729d0af2dac293774f36882f610b8c69c2aca0dd (diff) | |
download | vaadin-framework-fadb44821a5b686b61d7ef4667b141947e85fa67.tar.gz vaadin-framework-fadb44821a5b686b61d7ef4667b141947e85fa67.zip |
Rename Vaadin6Component to LegacyComponent (#9434)
Diffstat (limited to 'server/src/com/vaadin/ui/Embedded.java')
-rw-r--r-- | server/src/com/vaadin/ui/Embedded.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/com/vaadin/ui/Embedded.java b/server/src/com/vaadin/ui/Embedded.java index 6a1fceed93..a5175fbf7c 100644 --- a/server/src/com/vaadin/ui/Embedded.java +++ b/server/src/com/vaadin/ui/Embedded.java @@ -25,7 +25,7 @@ import com.vaadin.event.MouseEvents.ClickListener; import com.vaadin.server.PaintException; import com.vaadin.server.PaintTarget; import com.vaadin.server.Resource; -import com.vaadin.server.Vaadin6Component; +import com.vaadin.server.LegacyComponent; import com.vaadin.shared.EventId; import com.vaadin.shared.MouseEventDetails; import com.vaadin.shared.ui.embedded.EmbeddedConstants; @@ -42,7 +42,7 @@ import com.vaadin.shared.ui.embedded.EmbeddedServerRpc; * @since 3.0 */ @SuppressWarnings("serial") -public class Embedded extends AbstractComponent implements Vaadin6Component { +public class Embedded extends AbstractComponent implements LegacyComponent { /** * General object type. @@ -545,7 +545,7 @@ public class Embedded extends AbstractComponent implements Vaadin6Component { @Override public void changeVariables(Object source, Map<String, Object> variables) { - // TODO Remove once Vaadin6Component is no longer implemented + // TODO Remove once LegacyComponent is no longer implemented } } |