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 fr.univlorraine.mondossierweb.views.RechercheMobileView.java

/**
 * Recherche sur mobile
 */
@Component
@Scope("session")
@SpringView(name = RechercheMobileView.NAME)

From source file fr.univlorraine.mondossierweb.views.RechercheRapideView.java

/**
 * Page d'accueil
 */
@Component
@Scope("prototype")
@SpringView(name = RechercheRapideView.NAME)

From source file gui.views.LoginView.java

/**
 *
 * @author larsf
 */
public class LoginView extends VerticalLayout implements View {

From source file gui.views.MainView.java

/**
 *
 * @author larsf
 */
public class MainView extends VerticalLayout implements View {

From source file io.fns.calculator.Application.java

@VaadinView(name = "myView", ui = AnotherUI.class)
@UIScope
class MyView extends VerticalLayout implements View {

    @Override
    public void enter(ViewChangeListener.ViewChangeEvent event) {

From source file io.github.jikuja.vaadin_yamapa.ui.views.About.java

public class About extends CssLayout implements View {
    public static final String NAME = "about";

    public About() {
        Label licenses = new RichText().withSafeHtmlResource("/licenses.html");
        Label about = new RichText().withMarkDownResource("/ABOUT.md");

From source file io.github.jikuja.vaadin_yamapa.ui.views.PoiMap.java

public class PoiMap extends CssLayout implements View {
    private static Logger logger = Logger.getLogger(PoiMap.class.getName());
    public static final String NAME = "map";
    private final LMap map = new LMap();
    private final Button locate = new Button("");

From source file lifetime.component.LifetimeView.java

/**
 * <p>
 * The Lifetime Abstract View. This class represents the structural template for
 * the top-level view presented to the user. This template is composed by two
 * components: {@code LifetimeMenu} and {@code LifetimeContent}.
 *

From source file lu.uni.lassy.excalibur.examples.icrash.dev.web.java.views.ActivatorView.java

public class ActivatorView extends ActivatorDesign implements View, Serializable {

    private static final long serialVersionUID = -637344237113875270L;
    transient Logger log = Log4JUtils.getInstance().getLogger();

    public ActivatorView() {

From source file lu.uni.lassy.excalibur.examples.icrash.dev.web.java.views.AdminAuthView.java

public class AdminAuthView extends VerticalLayout implements View, Serializable {

    private static final long serialVersionUID = -1119522327335514726L;
    static Logger log = Log4JUtils.getInstance().getLogger();

    IcrashSystem sys = IcrashSystem.getInstance();