You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2012/08/22 00:54:25 UTC

svn commit: r1375839 - /jmeter/trunk/src/reports/org/apache/jmeter/gui/ReportMainFrame.java

Author: sebb
Date: Tue Aug 21 22:54:25 2012
New Revision: 1375839

URL: http://svn.apache.org/viewvc?rev=1375839&view=rev
Log:
Removed unused interfaces Remoteable and TestListener

Modified:
    jmeter/trunk/src/reports/org/apache/jmeter/gui/ReportMainFrame.java

Modified: jmeter/trunk/src/reports/org/apache/jmeter/gui/ReportMainFrame.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/reports/org/apache/jmeter/gui/ReportMainFrame.java?rev=1375839&r1=1375838&r2=1375839&view=diff
==============================================================================
--- jmeter/trunk/src/reports/org/apache/jmeter/gui/ReportMainFrame.java (original)
+++ jmeter/trunk/src/reports/org/apache/jmeter/gui/ReportMainFrame.java Tue Aug 21 22:54:25 2012
@@ -49,13 +49,10 @@ import javax.swing.tree.DefaultTreeCellR
 import javax.swing.tree.TreeCellRenderer;
 import javax.swing.tree.TreeModel;
 
-import org.apache.jmeter.engine.event.LoopIterationEvent;
 import org.apache.jmeter.gui.util.ReportMenuBar;
 import org.apache.jmeter.report.gui.action.ReportActionRouter;
 import org.apache.jmeter.report.gui.tree.ReportCellRenderer;
 import org.apache.jmeter.report.gui.tree.ReportTreeListener;
-import org.apache.jmeter.samplers.Remoteable;
-import org.apache.jmeter.testelement.TestListener;
 import org.apache.jmeter.util.JMeterUtils;
 import org.apache.jorphan.gui.ComponentUtil;
 import org.apache.jorphan.logging.LoggingManager;
@@ -66,7 +63,7 @@ import org.apache.log.Logger;
  * but with changes for the report gui.
  *
  */
-public class ReportMainFrame extends JFrame implements TestListener, Remoteable {
+public class ReportMainFrame extends JFrame {
 
     private static final long serialVersionUID = 240L;
 
@@ -263,53 +260,6 @@ public class ReportMainFrame extends JFr
         return this.tree;
     }
 
-    // TestListener implementation
-
-    /**
-     * Not sure if this should be in the ReportMainFrame, since the
-     * report component doesn't really test, it generates reports. for
-     * now, I will use it to trigger reporting. Later we can refactor
-     * MainFrame and create an abstract base class.
-     */
-    public void testStarted() {
-
-        // super.testStarted();
-    }
-
-    /**
-     * Not sure if this should be in the ReportMainFrame, since the
-     * report component doesn't really test, it generates reports. for
-     * now, I will use it to trigger reporting. Later we can refactor
-     * MainFrame and create an abstract base class.
-     */
-    public void testStarted(String host) {
-        // super.testStarted(host);
-    }
-
-    /**
-     * Not sure if this should be in the ReportMainFrame, since the
-     * report component doesn't really test, it generates reports. for
-     * now, I will use it to trigger reporting. Later we can refactor
-     * MainFrame and create an abstract base class.
-     */
-    public void testEnded() {
-        // super.testEnded();
-    }
-
-    /**
-     * Not sure if this should be in the ReportMainFrame, since the
-     * report component doesn't really test, it generates reports. for
-     * now, I will use it to trigger reporting. Later we can refactor
-     * MainFrame and create an abstract base class.
-     */
-    public void testEnded(String host) {
-        // super.testEnded(host);
-    }
-
-    /* Implements TestListener#testIterationStart(LoopIterationEvent) */
-    public void testIterationStart(LoopIterationEvent event) {
-    }
-
     /**
      * Create the GUI components and layout.
      */