]> source.dussan.org Git - vaadin-framework.git/commitdiff
Remove mentions of SimpleViewDisplay as there is no such thing (#12934)
authorArtur Signell <artur@vaadin.com>
Fri, 19 Dec 2014 00:10:47 +0000 (02:10 +0200)
committerVaadin Code Review <review@vaadin.com>
Fri, 19 Dec 2014 08:35:24 +0000 (08:35 +0000)
Change-Id: I8fd616f52e7a4fbc8c0f251103f440092ec0c57f

server/src/com/vaadin/navigator/Navigator.java

index 591f73dc7542cdf85ecf7a0546e766842e2494a3..ef5c61a294c84149638be2d6c0b8683b6fa7b4b7 100644 (file)
@@ -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;