diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-24 08:52:20 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-08-24 13:23:17 +0300 |
commit | 066491f708fd303c604b2bee7cbd46a8342f71bf (patch) | |
tree | 7551fc1dbc8675d0ceee844871efc27879afaffb /shared | |
parent | da176c32c4d92676424021712a7f6d7ee8cedf76 (diff) | |
download | vaadin-framework-066491f708fd303c604b2bee7cbd46a8342f71bf.tar.gz vaadin-framework-066491f708fd303c604b2bee7cbd46a8342f71bf.zip |
Rename Root related classes and package to UI (#8908)
Automatic renames in Eclipse of:
- package com.vaadin.terminal.gwt.client.ui.root to .UI
- RootConnector to UIConnector
- RootServerRpc to UIServerRpc
- RootState to UIState
- VRoot to VUI
- RootRequiresMoreInformationException to UIRequiresMoreInformationException
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/root/UIServerRpc.java (renamed from shared/src/com/vaadin/shared/ui/root/RootServerRpc.java) | 2 | ||||
-rw-r--r-- | shared/src/com/vaadin/shared/ui/root/UIState.java (renamed from shared/src/com/vaadin/shared/ui/root/RootState.java) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/shared/src/com/vaadin/shared/ui/root/RootServerRpc.java b/shared/src/com/vaadin/shared/ui/root/UIServerRpc.java index df2031f7d5..20cdd48f54 100644 --- a/shared/src/com/vaadin/shared/ui/root/RootServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/root/UIServerRpc.java @@ -19,7 +19,7 @@ import com.vaadin.shared.annotations.Delayed; import com.vaadin.shared.communication.ServerRpc; import com.vaadin.shared.ui.ClickRpc; -public interface RootServerRpc extends ClickRpc, ServerRpc { +public interface UIServerRpc extends ClickRpc, ServerRpc { @Delayed(lastonly = true) public void resize(int viewWidth, int viewHeight, int windowWidth, int windowHeight); diff --git a/shared/src/com/vaadin/shared/ui/root/RootState.java b/shared/src/com/vaadin/shared/ui/root/UIState.java index b7c2c88ce5..f019d1ce67 100644 --- a/shared/src/com/vaadin/shared/ui/root/RootState.java +++ b/shared/src/com/vaadin/shared/ui/root/UIState.java @@ -18,7 +18,7 @@ package com.vaadin.shared.ui.root; import com.vaadin.shared.ComponentState; import com.vaadin.shared.Connector; -public class RootState extends ComponentState { +public class UIState extends ComponentState { private Connector content; public Connector getContent() { |