if (f == null) {
testCasePane.setTestCaseInfo(null);
} else {
try {
HTMLDocumentLoader loader = new HTMLDocumentLoader();
HTMLDocument doc = loader.loadDocument(f.toURI().toURL());
testCasePane.setTestCaseInfo(doc);
if (activateSourceTab) {
testCasePane.getTabbedPane().setSelectedIndex(TestCasePane.DOC_INDEX);
}
} catch (IOException ex) {