45464748495051
/** * @see GanttMPXJSaver#save(File, MPXFile) */ public void save(File file) throws Exception { save(file, new MSPDIFile()); }
43444546474849
public GanttMSPDIOpen(GanttTree2 tasks, GanttProject project) { super(tasks, project); } public boolean load(File file) throws MPXException { return (load(new MSPDIFile(file))); }
47484950515253
public boolean load(File file) throws MPXException { return (load(new MSPDIFile(file))); } public boolean load(InputStream is) throws MPXException { return (load(new MSPDIFile(is))); }