}
public void actionPerformed(ActionEvent e) {
if (mLoop) {
// show RunDialog
TestSuiteRunDialog runDlg = new TestSuiteRunDialog(
new javax.swing.JFrame(), "Run options");
runDlg.setAlwaysOnTop(true);
runDlg.setVisible(true);
if (!runDlg.IsCancelled) {
getTestCasePane().runTestSuite(false, runDlg.getNumberOfLoops(), runDlg.isLoopsInHours());
}
} else {
getTestCasePane().runTestSuite(false);
}
}