diff options
author | Artur Signell <artur@vaadin.com> | 2012-11-20 12:04:11 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2012-11-20 11:54:40 +0000 |
commit | 65981705b433d9ed02c667a2d838ced2b6314573 (patch) | |
tree | a38571384ebd060d002062a682e5b6bf5537c811 /server | |
parent | a4fbf0a60ca9ec83346d403c569dc7c6db91b87f (diff) | |
download | vaadin-framework-65981705b433d9ed02c667a2d838ced2b6314573.tar.gz vaadin-framework-65981705b433d9ed02c667a2d838ced2b6314573.zip |
Renamed ComponentState to AbstractComponentState (#9032)
Change-Id: Ida6e0cb7064580be36627fd735d79b82ee69356d
Diffstat (limited to 'server')
-rw-r--r-- | server/src/com/vaadin/ui/AbstractComponent.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/com/vaadin/ui/AbstractComponent.java b/server/src/com/vaadin/ui/AbstractComponent.java index 57032f58a8..fc6f176e2a 100644 --- a/server/src/com/vaadin/ui/AbstractComponent.java +++ b/server/src/com/vaadin/ui/AbstractComponent.java @@ -35,7 +35,7 @@ import com.vaadin.server.Resource; import com.vaadin.server.Terminal; import com.vaadin.server.VaadinSession; import com.vaadin.shared.ComponentConstants; -import com.vaadin.shared.ComponentState; +import com.vaadin.shared.AbstractComponentState; import com.vaadin.shared.ui.ComponentStateUtil; import com.vaadin.util.ReflectTools; @@ -617,8 +617,8 @@ public abstract class AbstractComponent extends AbstractClientConnector * @return updated component shared state */ @Override - protected ComponentState getState() { - return (ComponentState) super.getState(); + protected AbstractComponentState getState() { + return (AbstractComponentState) super.getState(); } @Override |