public void fileUpdated(File file) {
updateView(file);
}
public void editTestProperties(File file) {
TestPropertiesDialog propsDialog;
try {
propsDialog = new TestPropertiesDialog(displayWindow, file);
} catch (IOException e) {
JOptionPane.showMessageDialog(displayWindow, "Unable to read the test file", "Error in Reading",
JOptionPane.ERROR_MESSAGE);
return;
}
propsDialog.setVisible(true);
}