diff options
author | Artur Signell <artur@vaadin.com> | 2014-12-19 02:10:47 +0200 |
---|---|---|
committer | Sauli Tähkäpää <sauli@vaadin.com> | 2015-01-05 12:14:31 +0200 |
commit | f528148873288d543935f0d35fcbff5d3d9924c1 (patch) | |
tree | 0073d1353a9664e67471a55ae70748946d068136 /server/src | |
parent | 0d401a70d1615a4440ce14e440e49ef37db8df86 (diff) | |
download | vaadin-framework-f528148873288d543935f0d35fcbff5d3d9924c1.tar.gz vaadin-framework-f528148873288d543935f0d35fcbff5d3d9924c1.zip |
Remove mentions of SimpleViewDisplay as there is no such thing (#12934)
Change-Id: I8fd616f52e7a4fbc8c0f251103f440092ec0c57f
Diffstat (limited to 'server/src')
-rw-r--r-- | server/src/com/vaadin/navigator/Navigator.java | 11 |
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; |