tabbedPane.setSelectedIndex(RESULTS_INDEX);
debugPanel.setVisible(false);
//this.getTe
NonWrappingTextPane[] panes = this.getVisibleTextPanes();
for (int i = 0; i < panes.length; i++) {
NonWrappingTextPane textPane = panes[i];
textPane.getDefaultLineNumberPanel().update(event);
}
break;
case BREAK:
startExecutionButton.setVisible(true);
stepOverExecutionButton.setVisible(true);
stepIntoExecutionButton.setVisible(true);
debugPanel.setVisible(true);
sourcePanel.setDividerLocation(sourcePanel.getDividerLocation() - 150);
// update the button status
// stopExecutionButton.setVisible(true);
//getVarButton.setVisible(true);
tabbedPane.setSelectedIndex(SOURCE_INDEX);
getTcSourcePane().setVisible(true);
// set the current line highlighted
Object extraData = event.getExtraData();
if (extraData instanceof Breakpoint) {
Breakpoint breakpoint = (Breakpoint) extraData;
// load the file into the tabbedPaned
File f = new File(breakpoint.getFileName());
NonWrappingTextPane textPane = null;
if (f.exists() && f.canRead()) {
textPane = loadTestCaseSource(f, true, f.getName().equals(StaticConfiguration.TEST_SCRIPT_FILENAME));
tabbedPane.setSelectedIndex(TestCasePane.SOURCE_INDEX);
// now go to the given line
textPane.selectLine(breakpoint.getLineIndex());
textPane.getLineNumberPanel().update(event);
}
}
break;
}
}