* r * This is the workhorse. It creates a new DataModel of the file, and
* then sets the Datamodel. A side effect of setting the datamodel is to
* update the running window.
*/
public void loadFileSet(FileSet fileSet) throws LoadException {
TVModel tvModel = new TVModel();
tvModel.setFrame(this);
try {
tvModel.loadNew(fileSet);
setDataModel(tvModel);
} catch (LoadException e) {
if (e.getType() != LoadException.INTPARSE)
JOptionPane.showMessageDialog(this, e);
throw e;