Package gov.nara.nwts.ftapp

Examples of gov.nara.nwts.ftapp.ActionResult


        types.put(key, stats);
        Matcher m = test(line);
        setVals(m, stats, line);
      }
      br.close();
      return new ActionResult(selectedFile, selectedFile.getName(), this.toString(), mydetails, types, true, timer.getDuration());
    } catch (FileNotFoundException e) {
      e.printStackTrace();
    } catch (IOException e) {
      e.printStackTrace();
    }
    return new ActionResult(selectedFile, selectedFile.getName(), this.toString(), mydetails, types, false, timer.getDuration());
  }
View Full Code Here


        details[i][1] = "Col" + i;
        details[i][2] = 100;
        details[i][4] = true;
      }     
    }
    return new ActionResult(selectedFile, selectedFile.getName(), this.toString(), details, types, true, timer.getDuration());
  }
View Full Code Here

      File f=new File(line);
      String s = f.getName();
      Stats stats = new Stats(s);
      types.put(s,stats);
    }     
    return new ActionResult(selectedFile, selectedFile.getName(), this.toString(), details, types, true, timer.getDuration());
  }
View Full Code Here

TOP

Related Classes of gov.nara.nwts.ftapp.ActionResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.