Package org.jbpm.formbuilder.client.bus.ui

Examples of org.jbpm.formbuilder.client.bus.ui.HistoryStoreHandler


public class HistoryPresenter {

    private EventBus bus = CommonGlobals.getInstance().getEventBus();

    public HistoryPresenter() {
        bus.addHandler(HistoryStoreEvent.TYPE, new HistoryStoreHandler() {
            public void onEvent(HistoryStoreEvent event) {
                if (event.getTokens() != null && !event.getTokens().isEmpty()) {
                    for (String token : event.getTokens()) {
                        History.newItem(token);
                    }
View Full Code Here

TOP

Related Classes of org.jbpm.formbuilder.client.bus.ui.HistoryStoreHandler

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.