aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui/Embedded.java
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-04-11 11:08:12 +0300
committerArtur Signell <artur@vaadin.com>2012-04-12 09:58:09 +0300
commit496a0c003995f3f29c2bd1f3bbcc3fb77a9d859f (patch)
tree67debd8b5a1b9132c1b0754c97e3517fba352de6 /src/com/vaadin/ui/Embedded.java
parent1cc4ad371d2517f9ad49bd0746c883568fa5ff62 (diff)
downloadvaadin-framework-496a0c003995f3f29c2bd1f3bbcc3fb77a9d859f.tar.gz
vaadin-framework-496a0c003995f3f29c2bd1f3bbcc3fb77a9d859f.zip
Component no longer implements Paintable
Diffstat (limited to 'src/com/vaadin/ui/Embedded.java')
-rw-r--r--src/com/vaadin/ui/Embedded.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/com/vaadin/ui/Embedded.java b/src/com/vaadin/ui/Embedded.java
index 8d31e0060d..797b486337 100644
--- a/src/com/vaadin/ui/Embedded.java
+++ b/src/com/vaadin/ui/Embedded.java
@@ -13,6 +13,7 @@ import com.vaadin.event.MouseEvents.ClickListener;
import com.vaadin.terminal.PaintException;
import com.vaadin.terminal.PaintTarget;
import com.vaadin.terminal.Resource;
+import com.vaadin.terminal.Vaadin6Component;
import com.vaadin.terminal.gwt.client.MouseEventDetails;
import com.vaadin.terminal.gwt.client.ui.ClickEventHandler;
import com.vaadin.terminal.gwt.client.ui.EmbeddedConnector;
@@ -27,7 +28,7 @@ import com.vaadin.terminal.gwt.client.ui.EmbeddedConnector.EmbeddedServerRPC;
* @since 3.0
*/
@SuppressWarnings("serial")
-public class Embedded extends AbstractComponent {
+public class Embedded extends AbstractComponent implements Vaadin6Component {
/**
* General object type.
@@ -119,7 +120,6 @@ public class Embedded extends AbstractComponent {
/**
* Invoked when the component state should be painted.
*/
- @Override
public void paintContent(PaintTarget target) throws PaintException {
switch (type) {
@@ -521,4 +521,8 @@ public class Embedded extends AbstractComponent {
ClickEvent.class, listener);
}
+ public void changeVariables(Object source, Map<String, Object> variables) {
+ // TODO Remove once Vaadin6Component is no longer implemented
+ }
+
}