diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-08-13 15:26:17 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-08-13 15:26:17 +0300 |
commit | 2e6313e12b7c11706d154befd0cdf3a665f46365 (patch) | |
tree | 22033c132a5cfc0668e9e4a11462dc65bc3b61fe /tests/testbench/com | |
parent | 5dfec038cd191101a9e918f8f886b3a9b45e0179 (diff) | |
download | vaadin-framework-2e6313e12b7c11706d154befd0cdf3a665f46365.tar.gz vaadin-framework-2e6313e12b7c11706d154befd0cdf3a665f46365.zip |
Rename VaadinContext -> AddonContext (#9273)
Diffstat (limited to 'tests/testbench/com')
-rw-r--r-- | tests/testbench/com/vaadin/tests/vaadincontext/TestAddonContextListener.java (renamed from tests/testbench/com/vaadin/tests/vaadincontext/TestVaadinContextListener.java) | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/testbench/com/vaadin/tests/vaadincontext/TestVaadinContextListener.java b/tests/testbench/com/vaadin/tests/vaadincontext/TestAddonContextListener.java index 9d1fc6b6c3..08db5c72ec 100644 --- a/tests/testbench/com/vaadin/tests/vaadincontext/TestVaadinContextListener.java +++ b/tests/testbench/com/vaadin/tests/vaadincontext/TestAddonContextListener.java @@ -11,14 +11,14 @@ import com.vaadin.terminal.gwt.server.BootstrapFragmentResponse; import com.vaadin.terminal.gwt.server.BootstrapListener; import com.vaadin.terminal.gwt.server.BootstrapPageResponse; import com.vaadin.terminal.gwt.server.BootstrapResponse; -import com.vaadin.terminal.gwt.server.VaadinContextEvent; -import com.vaadin.terminal.gwt.server.VaadinContextListener; +import com.vaadin.terminal.gwt.server.AddonContextEvent; +import com.vaadin.terminal.gwt.server.AddonContextListener; import com.vaadin.ui.Root; -public class TestVaadinContextListener implements VaadinContextListener { +public class TestAddonContextListener implements AddonContextListener { @Override - public void contextCreated(VaadinContextEvent event) { - event.getVaadinContext().addBootstrapListener(new BootstrapListener() { + public void contextCreated(AddonContextEvent event) { + event.getAddonContext().addBootstrapListener(new BootstrapListener() { @Override public void modifyBootstrapFragment( BootstrapFragmentResponse response) { @@ -47,7 +47,7 @@ public class TestVaadinContextListener implements VaadinContextListener { } @Override - public void contextDestoryed(VaadinContextEvent event) { + public void contextDestoryed(AddonContextEvent event) { // Nothing to do } |