summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-24 11:47:50 +0300
committerArtur Signell <artur@vaadin.com>2012-08-24 13:23:20 +0300
commit5c557b50bc5f7f754d60a2ed435907b897b6750b (patch)
tree7a9db946a00c955a75035db121b3109fece20574 /shared
parent0b0ddb86876a965f68c6160fe7a499412b6c199d (diff)
downloadvaadin-framework-5c557b50bc5f7f754d60a2ed435907b897b6750b.tar.gz
vaadin-framework-5c557b50bc5f7f754d60a2ed435907b897b6750b.zip
Remaining Root -> UI renames (#8908)
Diffstat (limited to 'shared')
-rw-r--r--shared/src/com/vaadin/shared/ApplicationConstants.java4
-rw-r--r--shared/src/com/vaadin/shared/ui/ui/PageClientRpc.java (renamed from shared/src/com/vaadin/shared/ui/root/PageClientRpc.java)2
-rw-r--r--shared/src/com/vaadin/shared/ui/ui/UIConstants.java (renamed from shared/src/com/vaadin/shared/ui/root/RootConstants.java)9
-rw-r--r--shared/src/com/vaadin/shared/ui/ui/UIServerRpc.java (renamed from shared/src/com/vaadin/shared/ui/root/UIServerRpc.java)2
-rw-r--r--shared/src/com/vaadin/shared/ui/ui/UIState.java (renamed from shared/src/com/vaadin/shared/ui/root/UIState.java)2
5 files changed, 10 insertions, 9 deletions
diff --git a/shared/src/com/vaadin/shared/ApplicationConstants.java b/shared/src/com/vaadin/shared/ApplicationConstants.java
index 31e633a210..ba35ddea50 100644
--- a/shared/src/com/vaadin/shared/ApplicationConstants.java
+++ b/shared/src/com/vaadin/shared/ApplicationConstants.java
@@ -29,10 +29,6 @@ public class ApplicationConstants {
public static final String APP_PROTOCOL_PREFIX = "app://";
public static final String CONNECTOR_PROTOCOL_PREFIX = "connector://";
public static final String UIDL_SECURITY_TOKEN_ID = "Vaadin-Security-Key";
- /**
- * Name of the parameter used to transmit root ids back and forth
- */
- public static final String ROOT_ID_PARAMETER = "rootId";
public static final String PARAM_UNLOADBURST = "onunloadburst";
diff --git a/shared/src/com/vaadin/shared/ui/root/PageClientRpc.java b/shared/src/com/vaadin/shared/ui/ui/PageClientRpc.java
index b7d9419057..a3cbc10cf6 100644
--- a/shared/src/com/vaadin/shared/ui/root/PageClientRpc.java
+++ b/shared/src/com/vaadin/shared/ui/ui/PageClientRpc.java
@@ -14,7 +14,7 @@
* the License.
*/
-package com.vaadin.shared.ui.root;
+package com.vaadin.shared.ui.ui;
import com.vaadin.shared.communication.ClientRpc;
diff --git a/shared/src/com/vaadin/shared/ui/root/RootConstants.java b/shared/src/com/vaadin/shared/ui/ui/UIConstants.java
index 34c17ac71f..76413628a4 100644
--- a/shared/src/com/vaadin/shared/ui/root/RootConstants.java
+++ b/shared/src/com/vaadin/shared/ui/ui/UIConstants.java
@@ -13,9 +13,9 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
-package com.vaadin.shared.ui.root;
+package com.vaadin.shared.ui.ui;
-public class RootConstants {
+public class UIConstants {
/**
* Attribute name for the lazy resize setting .
*/
@@ -41,4 +41,9 @@ public class RootConstants {
@Deprecated
public static final String ATTRIBUTE_NOTIFICATION_DELAY = "delay";
+ /**
+ * Name of the parameter used to transmit UI ids back and forth
+ */
+ public static final String UI_ID_PARAMETER = "uiId";
+
}
diff --git a/shared/src/com/vaadin/shared/ui/root/UIServerRpc.java b/shared/src/com/vaadin/shared/ui/ui/UIServerRpc.java
index 20cdd48f54..ef28a12415 100644
--- a/shared/src/com/vaadin/shared/ui/root/UIServerRpc.java
+++ b/shared/src/com/vaadin/shared/ui/ui/UIServerRpc.java
@@ -13,7 +13,7 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
-package com.vaadin.shared.ui.root;
+package com.vaadin.shared.ui.ui;
import com.vaadin.shared.annotations.Delayed;
import com.vaadin.shared.communication.ServerRpc;
diff --git a/shared/src/com/vaadin/shared/ui/root/UIState.java b/shared/src/com/vaadin/shared/ui/ui/UIState.java
index f019d1ce67..01426bd8f3 100644
--- a/shared/src/com/vaadin/shared/ui/root/UIState.java
+++ b/shared/src/com/vaadin/shared/ui/ui/UIState.java
@@ -13,7 +13,7 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
-package com.vaadin.shared.ui.root;
+package com.vaadin.shared.ui.ui;
import com.vaadin.shared.ComponentState;
import com.vaadin.shared.Connector;