List of usage examples for com.vaadin.ui VerticalLayout getHeight
@Override public float getHeight()
From source file:probe.com.model.util.vaadintoimageutil.Convertor.java
private JPanel convertVerticalLayout(VerticalLayout vaadinVerticalLayout) { JPanel verticalComponent = new JPanel(); verticalComponent.setSize((int) vaadinVerticalLayout.getWidth(), (int) vaadinVerticalLayout.getHeight()); verticalComponent.setBackground(backgroundMap.get(vaadinVerticalLayout.getStyleName())); return verticalComponent; }