/** * Construct a new <code>JOASectionReader</code> with a Dbase amd file and a prompt string. * * @param dname Dbase that this reader will fill in * @param inFile Source section data file * @see Dbase */ public JOASectionReader(Dbase dname, File inFile, EpicPtr ep, String progress) { mOwnerDBase = dname; mFile = inFile; mProgressStr = progress; mOwnerDBase.setEpicPtr(ep); }
/** * Construct a new <code>JOASectionReader</code> with a Dbase amd file. * * @param dname Dbase that this reader will fill in * @param inFile Source section data file * @see Dbase */ public JOASectionReader(Dbase dname, File inFile, EpicPtr ep) { mOwnerDBase = dname; mFile = inFile; mOwnerDBase.setEpicPtr(ep); if (ep.getProgressStr() != null) mProgressStr = new String(ep.getProgressStr()); }