Ejemplo n.º 1
0
 public static DumpNode load(String dumpSource, boolean loadHeader)
     throws FileNotFoundException, IOException, EmulationException {
   DumpNodeReader reader = new DumpNodeReader();
   reader.load(dumpSource, loadHeader);
   DumpNode ret = new DumpNode(null, 0, 0, reader);
   load(ret, reader);
   return ret;
 }