Ejemplo n.º 1
0
  protected JComponent createStatisticsPanel() {
    // Statistics tab
    final StatisticsPanel statisticsPane = new StatisticsPanel(myProject, this);
    // handler to select in results viewer by statistics pane events
    statisticsPane.addPropagateSelectionListener(createSelectMeListener());
    // handler to select test statistics pane by result viewer events
    setShowStatisticForProxyHandler(statisticsPane.createSelectMeListener());

    myStatisticsPane = statisticsPane;
    return myStatisticsPane.getContentPane();
  }
Ejemplo n.º 2
0
 public void dispose() {
   super.dispose();
   myShowStatisticForProxyHandler = null;
   myEventListeners.clear();
   myStatisticsPane.doDispose();
 }