49505152535455
/** * @throws MPXException * @see GanttMPXJOpen#load(java.io.File) */ public boolean load(File file) throws MPXException { return (load(new MPXFile(file))); }
57585960616263
/** * @throws MPXException * @see GanttMPXJOpen#load(InputStream is) */ public boolean load(InputStream is) throws MPXException { return (load(new MPXFile(is))); }
495051525354555657585960
/** * @see GanttMPXJSaver#save(File, MPXFile) */ public void save(File file) { try { MPXFile mpxFile = new MPXFile(); mpxFile.setLocale(locale); save(file, mpxFile); } catch (Exception ex) { System.out.println(ex);