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 br.com.anteros.mobileserver.app.form.TableForm.java

public class TableForm extends VerticalLayout implements ClickListener, SelectedTabChangeListener {

    private TextField fldId;
    private TextField fldName;
    private TextField fldDescription;
    private TextField fldTableNameMobile;

From source file br.gov.frameworkdemoiselle.vaadin.template.BaseVaadinView.java

/**
 * Vaadin ${link View} implementation.
 *
 * @author CETEC
 */
public abstract class BaseVaadinView extends VerticalLayout implements View {

From source file by.bigvova.views.AccessDeniedView.java

/**
 * View that is shown when the user attempts to access a restricted view.
 *
 * @author Petter Holmstrm (petter@vaadin.com)
 */
@SpringComponent

From source file by.bigvova.views.ErrorView.java

/**
 * View that is shown when the user tries to navigate to a view that does not exist. Please not
 * this view is not Spring-managed; the Navigator will take care of instantiating it when needed.
 *
 * @author Petter Holmstrm (petter@vaadin.com)
 */

From source file by.bigvova.views.HomeView.java

/**
 * When the user logs in and there is no view to navigate to, this view will be shown.
 *
 * @author Petter Holmstrm (petter@vaadin.com)
 */

From source file ch.bfh.blue.UI.AvailableSpacesView.java

/**
 * This view provides the user with the options to either choose a room and get
 * the available time frames for the room or to select a time frame and get all
 * rooms that are free in this time frame
 *
 * @author SRS-Team

From source file ch.bfh.blue.UI.ReservationBySelectedRoomView.java

/**
 * After selecting a room, this view will show all the timeframes in which the
 * room is free.
 *
 * @author SRS-Team
 *

From source file ch.bfh.blue.UI.ReservationBySelectedTimeView.java

/**
 * After selecting a timeframe, this view will show all the available rooms for
 * this timeframe
 *
 * @author SRS-Team
 *

From source file ch.bfh.due1.srs.views.ReservationView.java

@SuppressWarnings("serial")
public class ReservationView extends VerticalLayout implements View {
    public static final String VIEWNAME = "ReservationView";
    public static final int DaysOfWeekToDisplay = 7; // 5 or 7
    public static final String[] DayNames = { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" };
    private TabSheet tabsheet = new TabSheet();

From source file ch.bfh.due1.srs.views.RoomListView.java

@SuppressWarnings("serial")
public class RoomListView extends VerticalLayout implements View {

    public static final String VIEWNAME = "RoomListView";

    private Grid grid = new Grid();