Example usage for com.vaadin.ui AbstractSplitPanel getSplitPositionUnit

List of usage examples for com.vaadin.ui AbstractSplitPanel getSplitPositionUnit

Introduction

In this page you can find the example usage for com.vaadin.ui AbstractSplitPanel getSplitPositionUnit.

Prototype

public Unit getSplitPositionUnit() 

Source Link

Document

Returns the unit of position of the splitter.

Usage

From source file:org.lunifera.runtime.web.vaadin.databinding.component.internal.SplitPanelSplitPositionUnitProperty.java

License:Open Source License

protected Object doGetValue(Object source) {
    AbstractSplitPanel component = (AbstractSplitPanel) source;
    return component.getSplitPositionUnit();
}