summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2014-12-19 02:10:47 +0200
committerVaadin Code Review <review@vaadin.com>2014-12-19 08:35:24 +0000
commit8ba0064fe230b4cee7792c651da89adbaa9b2952 (patch)
treeb4ae34cecb73a9932fa7cb1c672a44b0f188ff92
parent2346f36de54719ca635b471156188b828317b1a7 (diff)
downloadvaadin-framework-8ba0064fe230b4cee7792c651da89adbaa9b2952.tar.gz
vaadin-framework-8ba0064fe230b4cee7792c651da89adbaa9b2952.zip
Remove mentions of SimpleViewDisplay as there is no such thing (#12934)
Change-Id: I8fd616f52e7a4fbc8c0f251103f440092ec0c57f
-rw-r--r--server/src/com/vaadin/navigator/Navigator.java11
1 files changed, 4 insertions, 7 deletions
diff --git a/server/src/com/vaadin/navigator/Navigator.java b/server/src/com/vaadin/navigator/Navigator.java
index 591f73dc75..ef5c61a294 100644
--- a/server/src/com/vaadin/navigator/Navigator.java
+++ b/server/src/com/vaadin/navigator/Navigator.java
@@ -58,9 +58,8 @@ import com.vaadin.ui.UI;
* Views can be explicitly registered or dynamically generated and listening to
* view changes is possible.
* <p>
- * Note that {@link Navigator} is not a component itself but comes with
- * {@link SimpleViewDisplay} which is a component that displays the selected
- * view as its contents.
+ * Note that {@link Navigator} is not a component itself but uses a
+ * {@link ViewDisplay} to update contents based on the state.
*
* @author Vaadin Ltd
* @since 7.0
@@ -627,11 +626,9 @@ public class Navigator implements Serializable {
}
/**
- * Return the ViewDisplay used by the navigator. Unless another display is
- * specified, a {@link SimpleViewDisplay} (which is a {@link Component}) is
- * used by default.
+ * Return the {@link ViewDisplay} used by the navigator.
*
- * @return current ViewDisplay
+ * @return the ViewDisplay used for displaying views
*/
public ViewDisplay getDisplay() {
return display;