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.github.daytron.twaattin.ui.TimelineScreen.java

/**
 *
 * @author Ryan Gilera
 */
public class TimelineScreen extends VerticalLayout {
    private static final long serialVersionUID = 1L;

From source file com.github.djabry.platform.vaadin.view.BaseMainViewAbstr.java

/**
 * @author djabry
 */
public abstract class BaseMainViewAbstr extends VerticalLayout implements SampleView {

    @PostConstruct

From source file com.github.djabry.platform.vaadin.view.SideBarView.java

/**
 * @author djabry
 */

@UIScope
@VaadinView(name = SideBarView.VIEW_NAME)

From source file com.github.peholmst.i18n4vaadin.cdi.demo.DemoView.java

/**
 * Example view
 *
 * @author Petter Holmstrm
 */
@CDIView(value = "demo")

From source file com.github.peholmst.i18n4vaadin.simple.demo.DemoView.java

/**
 * Example view
 *
 * @author Petter Holmstrm
 */
public class DemoView extends VerticalLayout implements View, LocaleChangedListener {

From source file com.github.peholmst.mvp4vaadin.navigation.ui.NavigationControllerViewComponent.java

/**
 * This component displays the current view of a {@link NavigationController},
 * provided that the view implements the {@link VaadinView} interface (see
 * {@link AbstractViewComponent} for example). When the current view changes,
 * this component will update itself accordingly.
 * 

From source file com.github.peholmst.mvp4vaadin.navigation.ui.ViewContainerComponent.java

/**
 * This component displays the current view of a {@link ViewController},
 * provided that the view implements the {@link VaadinView} interface. When the
 * current view changes, this component will update itself accordingly.
 * 
 * @author Petter Holmstrm

From source file com.gmail.volodymyrdotsenko.cms.fe.vaadin.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 com.gmail.volodymyrdotsenko.cms.fe.vaadin.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 com.gmail.volodymyrdotsenko.cms.fe.vaadin.views.HomeView.java

/**
 * When the user logs in and there is no view to navigate to, this view will be
 * shown.
 */
@SpringView(name = "")
@SideBarItem(sectionId = Sections.MAIN_MENU, captionCode = "application.section.item.home", order = 0)