summaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/application/RefreshStatePreserve.java
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-09-20 15:33:19 +0300
committerLeif Åstrand <leif@vaadin.com>2012-09-20 15:33:19 +0300
commit6335562c72fb193a2835a3a09b617aa6c90efea6 (patch)
tree63288fef0874cf5a03b8d3e034f65daae92c2c29 /uitest/src/com/vaadin/tests/application/RefreshStatePreserve.java
parent23e77a833df4845c0c0011dde13e6fc5db901a1c (diff)
downloadvaadin-framework-6335562c72fb193a2835a3a09b617aa6c90efea6.tar.gz
vaadin-framework-6335562c72fb193a2835a3a09b617aa6c90efea6.zip
Rename WrappedXYZ -> VaadinXYZ but retain WrappedSession (#9633)
Diffstat (limited to 'uitest/src/com/vaadin/tests/application/RefreshStatePreserve.java')
-rw-r--r--uitest/src/com/vaadin/tests/application/RefreshStatePreserve.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/application/RefreshStatePreserve.java b/uitest/src/com/vaadin/tests/application/RefreshStatePreserve.java
index 13ceceab6c..5e406a5c98 100644
--- a/uitest/src/com/vaadin/tests/application/RefreshStatePreserve.java
+++ b/uitest/src/com/vaadin/tests/application/RefreshStatePreserve.java
@@ -1,7 +1,7 @@
package com.vaadin.tests.application;
import com.vaadin.annotations.PreserveOnRefresh;
-import com.vaadin.server.WrappedRequest;
+import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractTestUI;
import com.vaadin.ui.Label;
@@ -9,7 +9,7 @@ import com.vaadin.ui.Label;
public class RefreshStatePreserve extends AbstractTestUI {
@Override
- protected void setup(WrappedRequest request) {
+ protected void setup(VaadinRequest request) {
addComponent(new Label("window.name: "
+ request.getBrowserDetails().getWindowName()));
addComponent(new Label("UI id: " + getUIId()));