List of usage examples for com.vaadin.server Sizeable setWidth
public void setWidth(String width);
From source file:org.lunifera.runtime.web.vaadin.databinding.component.internal.SizeableWidthProperty.java
License:Open Source License
protected void doSetValue(Object source, Object value) { Sizeable component = (Sizeable) source; component.setWidth((String) value); }