List of usage examples for com.vaadin.server Sizeable setHeight
public void setHeight(String height);
From source file:org.lunifera.runtime.web.vaadin.databinding.component.internal.SizeableHeightProperty.java
License:Open Source License
protected void doSetValue(Object source, Object value) { Sizeable component = (Sizeable) source; component.setHeight((String) value); }
From source file:uk.q3c.krail.core.option.DefaultOptionPopup.java
License:Apache License
private void calculateWindowSize(Sizeable window) { window.setSizeUndefined(); window.setHeight("600px"); }