Package com.google.speedtracer.client.model.DataDispatcher

Examples of com.google.speedtracer.client.model.DataDispatcher.EventRecordDispatcher.onEventRecord()


  }

  public void onEventRecord(EventRecord data) {
    final EventRecordDispatcher handler = typeMap.get(data.getType());
    if (handler != null) {
      handler.onEventRecord(data);
    }
  }

  public void removeListener(Listener listener) {
    listeners.remove(listener);
View Full Code Here


   * UiEvent dispatch proxy.
   */
  public void onEventRecord(EventRecord data) {
    final EventRecordDispatcher specialHandler = specialCasedTypeMap.get(data.getType());
    if (specialHandler != null) {
      specialHandler.onEventRecord(data);
    } else if (UiEvent.isUiEvent(data)) {
      onUiEventFinished(data.<UiEvent> cast());
    }
  }

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.