Example usage for com.vaadin.server Sizeable setWidth

List of usage examples for com.vaadin.server Sizeable setWidth

Introduction

In this page you can find the example usage for com.vaadin.server Sizeable setWidth.

Prototype

public void setWidth(String width);

Source Link

Document

Sets the width of the component using String presentation.

Usage

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);
}