Example usage for com.google.gwt.event.shared EventBus subclass-usage

List of usage examples for com.google.gwt.event.shared EventBus subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.event.shared EventBus subclass-usage.

Usage

From source file com.google.gwt.event.shared.testing.CountingEventBus.java

/**
 * Legacy compatibility wrapper for
 * {@link com.google.web.bindery.event.shared.testing.CountingEventBus}.
 */
public class CountingEventBus extends com.google.gwt.event.shared.EventBus {
    private final com.google.web.bindery.event.shared.testing.CountingEventBus real;

From source file erd.client.sun.awt.ComponentEventBus.java

/**
 * Basic implementation of {@link EventBus}.
 */
public class ComponentEventBus extends EventBus {
    private interface Command {
        void execute();

From source file org.bonitasoft.web.toolkit.client.eventbus.MainEventBus.java

/**
 * Application's only event bus
 * 
 * @author Vincent Elcrin
 * 
 */

From source file org.drools.workbench.screens.guided.dtable.client.widget.analysis.EventBusMock.java

public class EventBusMock extends EventBus {

    private UpdateColumnDataEvent updateColumnDataEvent;

    public UpdateColumnDataEvent getUpdateColumnDataEvent() {
        return updateColumnDataEvent;

From source file org.vectomatic.dom.svg.impl.DOMEventBus.java

/**
 * Implementation of {@link EventBus} which invokes
 * {@link org.vectomatic.dom.svg.utils.DOMHelper#unbindEventListener(Element, String)}
 * on DOM element sources when they no longer have any event registered handlers
 * for the corresponding event type.
 */