Browse Source

Added javadoc

tags/7.0.0.beta2
Artur Signell 11 years ago
parent
commit
b5af5509b2
1 changed files with 9 additions and 0 deletions
  1. 9
    0
      server/src/com/vaadin/server/Page.java

+ 9
- 0
server/src/com/vaadin/server/Page.java View File

@@ -415,6 +415,15 @@ public class Page implements Serializable {
return uI.getSession().getBrowser();
}

/**
* Updates the internal state with the given values. Does not resize the
* Page or browser window.
*
* @param width
* The new width
* @param height
* The new height
*/
public void setBrowserWindowSize(int width, int height) {
boolean fireEvent = false;


Loading…
Cancel
Save