Example usage for com.vaadin.ui Layout addComponents

List of usage examples for com.vaadin.ui Layout addComponents

Introduction

In this page you can find the example usage for com.vaadin.ui Layout addComponents.

Prototype

public void addComponents(Component... components);

Source Link

Document

Adds the components in the given order to this component container.

Usage

From source file:org.vaadin.spring.samples.mvp.ui.view.LayoutIntegrator.java

License:Apache License

static void addComponents(Layout layout, Component[] components) {
    layout.addComponents(components);
}