Commit in lcsim/src/org/lcsim/plugin on MAIN
LCSimFileSelector.java+1-11.1 -> 1.2
StdhepFileSelector.java+1-11.3 -> 1.4
FileSelector.java+1-11.2 -> 1.3
+3-3
3 modified files
Bug fix for remembering last file list

lcsim/src/org/lcsim/plugin
LCSimFileSelector.java 1.1 -> 1.2
diff -u -r1.1 -r1.2
--- LCSimFileSelector.java	15 Mar 2007 05:41:27 -0000	1.1
+++ LCSimFileSelector.java	15 Mar 2007 17:09:45 -0000	1.2
@@ -26,7 +26,7 @@
       {
          LCIOEventSource source = isMultiFileSelected() ? new LCIOEventSource(getSelectedFiles()) : new LCIOEventSource(getSelectedFile());
          app.getLookup().add(source);
-         dispose();
+         super.onFinish();
       }
       catch (IOException x)
       {

lcsim/src/org/lcsim/plugin
StdhepFileSelector.java 1.3 -> 1.4
diff -u -r1.3 -r1.4
--- StdhepFileSelector.java	15 Mar 2007 06:39:39 -0000	1.3
+++ StdhepFileSelector.java	15 Mar 2007 17:09:45 -0000	1.4
@@ -28,7 +28,7 @@
          Object detectorName = JOptionPane.showInputDialog(app,"Select detector name","Choose detector geometry",JOptionPane.QUESTION_MESSAGE,null,null,"sidaug05");
          StdhepEventSource source = isMultiFileSelected() ? new StdhepEventSource(getSelectedFiles(),detectorName.toString()) : new StdhepEventSource(getSelectedFile(),detectorName.toString());
          app.getLookup().add(source);
-         dispose();
+         super.onFinish();
       }
       catch (IOException x)
       {

lcsim/src/org/lcsim/plugin
FileSelector.java 1.2 -> 1.3
diff -u -r1.2 -r1.3
--- FileSelector.java	15 Mar 2007 06:39:40 -0000	1.2
+++ FileSelector.java	15 Mar 2007 17:09:45 -0000	1.3
@@ -21,7 +21,7 @@
  *
  * @author tonyj
  */
-abstract class FileSelector extends WizardPage implements Finishable, ListDataListener
+class FileSelector extends WizardPage implements Finishable, ListDataListener
 {
    private DefaultComboBoxModel model = new DefaultComboBoxModel();
    private String fileExtension;
CVSspam 0.2.8