Example usage for com.google.gwt.debugpanel.client DefaultStatisticsModelStartupEventHandler DefaultStatisticsModelStartupEventHandler

List of usage examples for com.google.gwt.debugpanel.client DefaultStatisticsModelStartupEventHandler DefaultStatisticsModelStartupEventHandler

Introduction

In this page you can find the example usage for com.google.gwt.debugpanel.client DefaultStatisticsModelStartupEventHandler DefaultStatisticsModelStartupEventHandler.

Prototype

public DefaultStatisticsModelStartupEventHandler() 

Source Link

Usage

From source file:com.example.panel.client.MyDebugPanel.java

License:Apache License

public void onShow() {
    panelComponent.reset(sm = new GwtDebugStatisticsModel(new DefaultStatisticsModelStartupEventHandler(),
            new DefaultStatisticsModelRpcEventHandler()));
    xmlComponent.reset();//from   w w  w.j  a v a2  s  .co  m
    logComponent.reset();

    sys.addListener(sm, false);
    sys.addListener(em, false);
    sys.enable(true);
}