Example usage for com.vaadin.navigator View interface-usage

List of usage examples for com.vaadin.navigator View interface-usage

Introduction

In this page you can find the example usage for com.vaadin.navigator View interface-usage.

Usage

From source file com.github.moscaville.contactsdb.main.DetailView.java

/**
 *
 * @author moscac
 */
@SpringView(name = DetailView.VIEW_NAME)
@SideBarItem(sectionId = Sections.CONTACTS, caption = "Details", order = 1)

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.tempora.view.MainView.java

/**
 * Represents the application's main view.
 */
@SpringComponent
@UIScope
public final class MainView extends Panel implements View {

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.AdminView.java

/**
 * View that is available to administrators only.
 *
 */
@Secured("ROLE_ADMIN")
@SpringView(name = "admin")

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)

From source file com.gmail.volodymyrdotsenko.cms.fe.vaadin.views.UserView.java

/**
 * View that is available for all users.
 *
 * @author Petter Holmstrm (petter@vaadin.com)
 */
@Secured({ "ROLE_USER", "ROLE_ADMIN" })

From source file com.hack23.cia.web.impl.ui.application.views.common.AbstractView.java

/**
 * The Class AbstractView.
 */
public abstract class AbstractView extends Panel implements View {

    /** The Constant serialVersionUID. */