Example usage for com.vaadin.ui VerticalLayout subclass-usage

List of usage examples for com.vaadin.ui VerticalLayout subclass-usage

Introduction

In this page you can find the example usage for com.vaadin.ui VerticalLayout subclass-usage.

Usage

From source file com.etest.valo.CommonParts.java

public class CommonParts extends VerticalLayout implements View {
    public CommonParts() {
        setMargin(true);
        addStyleName("content-common");

        Label h1 = new Label("Common UI Elements");

From source file com.etest.valo.DateFields.java

public class DateFields extends VerticalLayout implements View {
    public DateFields() {
        setMargin(true);

        Label h1 = new Label("Date Fields");
        h1.addStyleName("h1");

From source file com.etest.valo.Dragging.java

/**
 * 
 * @since 2015
 * @author Vaadin Ltd
 */
public class Dragging extends VerticalLayout implements View {

From source file com.etest.valo.Forms.java

/**
 * 
 * @since 2015
 * @author Vaadin Ltd
 */
public class Forms extends VerticalLayout implements View {

From source file com.etest.valo.Labels.java

/**
 * 
 * @since 2015
 * @author Vaadin Ltd
 */
public class Labels extends VerticalLayout implements View {

From source file com.etest.valo.MenuBars.java

public class MenuBars extends VerticalLayout implements View {
    public MenuBars() {
        setMargin(true);
        setSpacing(true);

        Label h1 = new Label("Menu Bars");

From source file com.etest.valo.NativeSelects.java

public class NativeSelects extends VerticalLayout implements View {
    public NativeSelects() {
        setMargin(true);

        Label h1 = new Label("Selects");
        h1.addStyleName("h1");

From source file com.etest.valo.Panels.java

public class Panels extends VerticalLayout implements View {
    public Panels() {
        setMargin(true);

        Label h1 = new Label("Panels & Layout panels");
        h1.addStyleName("h1");

From source file com.etest.valo.PopupViews.java

public class PopupViews extends VerticalLayout implements View {
    public PopupViews() {
        setMargin(true);

        Label h1 = new Label("Popup Views");
        h1.addStyleName("h1");

From source file com.etest.valo.Sliders.java

public class Sliders extends VerticalLayout implements View {
    public Sliders() {
        setMargin(true);

        Label h1 = new Label("Sliders");
        h1.addStyleName("h1");