Package org.vaadin.spring.samples.mvp.ui.component.nav

Examples of org.vaadin.spring.samples.mvp.ui.component.nav.NavElementFactory


    private static final String NAV_ELEMENTS_FILE = "navElements.json";

    @EventBusListenerMethod(filter=StartupFilter.class)
    public void onStartup(Event<Action> event) {
        NavElementFactory factory = new NavElementFactory();
        getEventBus().publish(this, factory.getNavElements(NAV_ELEMENTS_FILE));
    }
View Full Code Here


        String tabCollectionId = String.valueOf(origin.getId().intValue());
        addCaptions(origin, getNavElements(tabCollectionId));
    }

    protected List<NavElement> getNavElements(String id) {
        NavElementFactory factory = new NavElementFactory();
        return factory.getNavElements("screens/" + id + "/tabs.json");
    }
View Full Code Here

TOP

Related Classes of org.vaadin.spring.samples.mvp.ui.component.nav.NavElementFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.