Examples of NavElementFactory


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

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

        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
Copyright © 2018 www.massapi.com. 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.