summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/ui/Component.java
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-08-15 16:12:50 +0300
committerLeif Åstrand <leif@vaadin.com>2012-08-20 08:53:45 +0300
commita80335107906f1c41c1f42d2462dd838e8ea5b6c (patch)
treef85219d1fccb8304e0c1fcc92d1310b31a6300de /server/src/com/vaadin/ui/Component.java
parent890356e6ab17661364a04d60ded9fe01628b0830 (diff)
downloadvaadin-framework-a80335107906f1c41c1f42d2462dd838e8ea5b6c.tar.gz
vaadin-framework-a80335107906f1c41c1f42d2462dd838e8ea5b6c.zip
Introduce ClientConnector.beforeClientResponse(boolean initial) #9228
Remove Component.updateState() to use the new method instead.
Diffstat (limited to 'server/src/com/vaadin/ui/Component.java')
-rw-r--r--server/src/com/vaadin/ui/Component.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/server/src/com/vaadin/ui/Component.java b/server/src/com/vaadin/ui/Component.java
index ac668168f2..ff7ed47930 100644
--- a/server/src/com/vaadin/ui/Component.java
+++ b/server/src/com/vaadin/ui/Component.java
@@ -637,18 +637,6 @@ public interface Component extends ClientConnector, Sizeable, Serializable {
public ComponentState getState();
/**
- * Called before the shared state is sent to the client. Gives the component
- * an opportunity to set computed/dynamic state values e.g. state values
- * that depend on other component features.
- * <p>
- * This method must not alter the component hierarchy in any way.
- * </p>
- *
- * @since 7.0
- */
- public void updateState();
-
- /**
* Adds an unique id for component that get's transferred to terminal for
* testing purposes. Keeping identifiers unique is the responsibility of the
* programmer.