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 /server/src/com/vaadin/terminal/RootProvider.java | |
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 'server/src/com/vaadin/terminal/RootProvider.java')
-rw-r--r-- | server/src/com/vaadin/terminal/RootProvider.java | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/server/src/com/vaadin/terminal/RootProvider.java b/server/src/com/vaadin/terminal/RootProvider.java deleted file mode 100644 index 229f2ca989..0000000000 --- a/server/src/com/vaadin/terminal/RootProvider.java +++ /dev/null @@ -1,29 +0,0 @@ -/*
- * Copyright 2011 Vaadin Ltd.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
-
-package com.vaadin.terminal;
-
-import com.vaadin.Application;
-import com.vaadin.UIRequiresMoreInformationException;
-import com.vaadin.ui.UI;
-
-public interface RootProvider {
- public Class<? extends UI> getRootClass(Application application,
- WrappedRequest request) throws UIRequiresMoreInformationException;
-
- public UI instantiateRoot(Application application,
- Class<? extends UI> type, WrappedRequest request);
-}
|