Example usage for com.vaadin.client.ui.orderedlayout Slot setLayout

List of usage examples for com.vaadin.client.ui.orderedlayout Slot setLayout

Introduction

In this page you can find the example usage for com.vaadin.client.ui.orderedlayout Slot setLayout.

Prototype

public void setLayout(VAbstractOrderedLayout layout) 

Source Link

Document

Set the layout in which this slot is.

Usage

From source file:com.haulmont.cuba.web.widgets.client.orderedactionslayout.CubaOrderedActionsLayoutWidget.java

License:Apache License

@Override
protected Slot createSlot(Widget widget) {
    Slot slot = new CubaOrderedLayoutSlot(this, widget);
    slot.setLayout(this);
    slot.setWidget(widget);//from w ww .j  a v  a  2 s  .  c om
    return slot;
}