summaryrefslogtreecommitdiffstats
path: root/server/src
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2013-03-24 16:38:45 +0200
committerVaadin Code Review <review@vaadin.com>2013-03-28 07:27:01 +0000
commita2a8666118de8b8f746e631a3aab4c58d2d4a6af (patch)
tree57ea2053e10543840906dd1506bfb1c0bec751f6 /server/src
parent5e77672975c6d272072baeec77005c847535fd97 (diff)
downloadvaadin-framework-a2a8666118de8b8f746e631a3aab4c58d2d4a6af.tar.gz
vaadin-framework-a2a8666118de8b8f746e631a3aab4c58d2d4a6af.zip
Added Page.reload (#10250)
Change-Id: I8ec7edbc370388d8b36a474a8845e846395f26ed
Diffstat (limited to 'server/src')
-rw-r--r--server/src/com/vaadin/server/Page.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/server/src/com/vaadin/server/Page.java b/server/src/com/vaadin/server/Page.java
index f7b65a8e9b..e84271e883 100644
--- a/server/src/com/vaadin/server/Page.java
+++ b/server/src/com/vaadin/server/Page.java
@@ -1041,4 +1041,11 @@ public class Page implements Serializable {
uI.getRpcProxy(PageClientRpc.class).setTitle(title);
}
+ /**
+ * Reloads the page in the browser.
+ */
+ public void reload() {
+ uI.getRpcProxy(PageClientRpc.class).reload();
+ }
+
}