< prev index next >

src/com/sun/javatest/tool/Tool.java

Print this page

        

@@ -308,20 +308,20 @@
      * <code>public static Tool restore(Map m)</code>
      * which will be invoked to recreate the tool.
      * @param m the map in which to store the significant state
      * of the tool
      */
-    protected abstract void save(Map m);
+    protected abstract void save(Map<String, String> m);
 
 
     /**
      * Restore information about a tool from a map, and configure
      * the tool according this information.
      * @param m the map in which to store the significant state
      * of the tool
      */
-    protected abstract void restore(Map m);
+    protected abstract void restore(Map<String, String> m);
 
 
     /**
      * Get a list (if any) of the reasons why it might be inadvisable
      * to close the tool at this point. This will normally include
< prev index next >