10571058105910601061106210631064
public void dumpToScript() throws FileNotFoundException { File file = new File(this.getName().replace(' ', '_') + ".py"); ScriptGenerator scriptGen = new ScriptGenerator(file); scriptGen.startDFS(this); }
10651066106710681069107010711072
public void dumpToScript(String filepath) throws FileNotFoundException { File file = new File(filepath); ScriptGenerator scriptGen = new ScriptGenerator(file); scriptGen.startDFS(this); }