List of usage examples for com.vaadin.ui Window getPositionX
public int getPositionX()
From source file:com.vaadHL.utl.state.ScreenInfo.java
License:Apache License
/** * Gets information from a window./*from w w w .j a v a 2 s. c o m*/ * * @param wi * the Window */ public void readFrom(Window wi) { positionX = wi.getPositionX(); positionY = wi.getPositionY(); sizeFrom(wi); }