diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-09-05 19:32:27 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-09-05 19:32:27 +0300 |
commit | 4019f7d03a1d8437a24ccadc562c30f99da5efe0 (patch) | |
tree | da2acd7754b028172a102980fe67195563f82b8c /uitest/src/com/vaadin/tests/appengine | |
parent | cc3ddcac953a087b09ae330ff37126dcd5ec727f (diff) | |
download | vaadin-framework-4019f7d03a1d8437a24ccadc562c30f99da5efe0.tar.gz vaadin-framework-4019f7d03a1d8437a24ccadc562c30f99da5efe0.zip |
Rename LegacyApplication -> Application (#9402)
Diffstat (limited to 'uitest/src/com/vaadin/tests/appengine')
-rw-r--r-- | uitest/src/com/vaadin/tests/appengine/GAESyncTest.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/uitest/src/com/vaadin/tests/appengine/GAESyncTest.java b/uitest/src/com/vaadin/tests/appengine/GAESyncTest.java index 19b872cb2f..c819f4ebea 100644 --- a/uitest/src/com/vaadin/tests/appengine/GAESyncTest.java +++ b/uitest/src/com/vaadin/tests/appengine/GAESyncTest.java @@ -1,7 +1,7 @@ package com.vaadin.tests.appengine; import com.google.apphosting.api.DeadlineExceededException; -import com.vaadin.LegacyApplication; +import com.vaadin.Application; import com.vaadin.data.Property; import com.vaadin.data.Property.ValueChangeEvent; import com.vaadin.server.ClassResource; @@ -15,7 +15,7 @@ import com.vaadin.ui.Notification; import com.vaadin.ui.TextField; import com.vaadin.ui.UI.LegacyWindow; -public class GAESyncTest extends LegacyApplication { +public class GAESyncTest extends Application { /** * @@ -50,10 +50,10 @@ public class GAESyncTest extends LegacyApplication { private static final long serialVersionUID = -6521351715072191625l; TextField tf; Label l; - LegacyApplication app; + Application app; GridLayout gl; - private IntrWindow(LegacyApplication app) { + private IntrWindow(Application app) { this.app = app; tf = new TextField("Echo thingie"); |