예제 #1
0
 /**
  * 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);
 }
예제 #2
0
 /**
  * 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());
 }