< prev index next >

src/com/sun/javatest/exec/ExecTool.java

Print this page

        

@@ -294,18 +294,18 @@
         updateGUI();
 
     }
 
     @Override
-    protected void save(Map m) {
+    protected void save(Map<String, String> m) {
         for (ET_Control c:controls) {
             c.save(m);
         }
     }
 
     @Override
-    protected void restore(Map m) {
+    protected void restore(Map<String, String> m) {
         for (ET_Control c:controls) {
             c.restore(m);
         }
     }
 

@@ -625,15 +625,15 @@
             }
             bcc.loadInterviewFromFile(bcc.session.getWorkDirectory(), file);
         }
     }
 
-    void saveTreeState(Map m) {
+    void saveTreeState(Map<String, String> m) {
         testTreePanel.saveTreeState(m);
     }
 
-    void restoreTreeState(Map m) {
+    void restoreTreeState(Map<String, String> m) {
         testTreePanel.restoreTreeState(m);
     }
 
     static final String TOOLBAR_PREF = "exec.toolbar";
     static final String FILTER_WARN_PREF = "exec.filterWarn";
< prev index next >