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.klwork.explorer.ui.main.views.UserView.java

/**
 * The Class UserView.
 */
@Component
@Scope("prototype")
@VaadinView(UserView.NAME)

From source file com.klwork.ui.main.views.AuthenticatedView.java

/**
 * The Class AuthenticatedView.
 */
@Component
@Scope("prototype")
@VaadinView(AuthenticatedView.NAME)

From source file com.klwork.ui.main.views.GuestView.java

/**
 * The Class GuestView.
 */
@Component
@Scope("prototype")
@VaadinView(GuestView.NAME)

From source file com.klwork.ui.main.views.MainView.java

/**
 * The Class MainView.
 */
@Component
@Scope("prototype")
@VaadinView(value = MainView.NAME, cached = true)

From source file com.klwork.ui.main.views.RoleAdminView.java

/**
 * The Class RoleAdminView.
 */
@Component
@Scope("prototype")
@VaadinView(RoleAdminView.NAME)

From source file com.klwork.ui.main.views.RoleUserView.java

/**
 * The Class RoleUserView.
 */
@Component
@Scope("prototype")
@VaadinView(RoleUserView.NAME)

From source file com.klwork.ui.main.views.SampleMainView.java

/**
 * The Class MainView.
 */
@Component
@Scope("prototype")
@VaadinView(SampleMainView.NAME)

From source file com.klwork.ui.main.views.UserView.java

/**
 * The Class UserView.
 */
@Component
@Scope("prototype")
@VaadinView(UserView.NAME)

From source file com.kpg.diary.ui.NativeSelects.java

@Component("nativeSelects")
public class NativeSelects extends VerticalLayout implements View {
    public NativeSelects() {
        setMargin(true);

        Label h1 = new Label("Selects");

From source file com.lst.deploymentautomation.vaadin.core.AppView.java

/**
 * Base class for application views.
 * @author mhi
 */
public abstract class AppView extends CustomComponent implements View {