diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-24 11:27:11 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-08-24 13:23:18 +0300 |
commit | ff0761f787f94a157d12af2a37e10e808d43fc59 (patch) | |
tree | 854cb79113c6c1f95e0529efd88e981638f1a463 /tests/testbench/com/vaadin/launcher | |
parent | 066491f708fd303c604b2bee7cbd46a8342f71bf (diff) | |
download | vaadin-framework-ff0761f787f94a157d12af2a37e10e808d43fc59.tar.gz vaadin-framework-ff0761f787f94a157d12af2a37e10e808d43fc59.zip |
Renamed Application and UI methods and fields from "Root" to "UI" (#8908).
Diffstat (limited to 'tests/testbench/com/vaadin/launcher')
-rw-r--r-- | tests/testbench/com/vaadin/launcher/ApplicationRunnerServlet.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testbench/com/vaadin/launcher/ApplicationRunnerServlet.java b/tests/testbench/com/vaadin/launcher/ApplicationRunnerServlet.java index 43d4ad699e..2611546203 100644 --- a/tests/testbench/com/vaadin/launcher/ApplicationRunnerServlet.java +++ b/tests/testbench/com/vaadin/launcher/ApplicationRunnerServlet.java @@ -112,10 +112,10 @@ public class ApplicationRunnerServlet extends AbstractApplicationServlet { final Class<?> classToRun = getClassToRun(); if (UI.class.isAssignableFrom(classToRun)) { Application application = new Application(); - application.addRootProvider(new AbstractRootProvider() { + application.addUIProvider(new AbstractRootProvider() { @Override - public Class<? extends UI> getRootClass( + public Class<? extends UI> getUIClass( Application application, WrappedRequest request) throws UIRequiresMoreInformationException { return (Class<? extends UI>) classToRun; |