OpenFileAction ofa = new OpenFileAction();
ofa.setFile(getCircuitFile());
ofa.run();
//Need to insert something at the END of the document
GenericEncloserAction gea = new GenericEncloserAction();
gea.setActiveEditor(null, PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getActiveEditor());
gea.setEnclosingStrings("\n<cfset fusebox.circuits." + name + " = \"" + path + "\">\n"," ");
gea.run();
//Here we could parse it then
Utils.println("<cfset fusebox.circuits." + name + " = \"" + path + "\">");
Utils.println("create circuit: " + name + " in " + path + " and create circuit files?" + createFolders);