summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/navigator/View.java
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2012-08-30 18:26:58 +0300
committerJohannes Dahlström <johannesd@vaadin.com>2012-08-31 11:06:45 +0300
commit1544c711166ade7b4ec5130a4c7f3ff4b2a864f2 (patch)
treed5b2ab8dbd9f666e36a5c6b18950558428970074 /server/src/com/vaadin/navigator/View.java
parent14d6aa6975cd0f100ae24bf5f3f679aeaf5a841a (diff)
downloadvaadin-framework-1544c711166ade7b4ec5130a4c7f3ff4b2a864f2.tar.gz
vaadin-framework-1544c711166ade7b4ec5130a4c7f3ff4b2a864f2.zip
Replace references to "fragment" and "viewAndParameters" with "navigation state" where appropriate (#9367)
Diffstat (limited to 'server/src/com/vaadin/navigator/View.java')
-rw-r--r--server/src/com/vaadin/navigator/View.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/com/vaadin/navigator/View.java b/server/src/com/vaadin/navigator/View.java
index caee801f0c..ffe9cfd0a9 100644
--- a/server/src/com/vaadin/navigator/View.java
+++ b/server/src/com/vaadin/navigator/View.java
@@ -38,9 +38,9 @@ public interface View extends Serializable {
* is any additional id to data what should be shown in the view, it is also
* optionally passed as parameter.
*
- * @param fragmentParameters
+ * @param parameters
* parameters to the view or empty string if none given. This is
* the string that appears e.g. in URI after "viewname/"
*/
- public void navigateTo(String fragmentParameters);
+ public void navigateTo(String parameters);
} \ No newline at end of file