Package utils

Examples of utils.AgeGroup


   * @param results
   * @param event
   */
  public void generateResultTable(List<Result> results, Event event,
      String heatGender) {
    AgeGroup ageGroup = new AgeGroup();
    List<String> ageGroups = ageGroup.getAgeGroups();

    try {
      if (heatGender.equals("Mixt")) {
        // results for Mixt heatGender
        FileWriter fstreamM = new FileWriter(pathFile.get("csv")
View Full Code Here


    // get the results and order them after the time
    List<Result> results = operations.returnResults(event, heatGender, requiredGender);

    Collections.sort(results, new ResultComparator());
    // get the age-groups
    AgeGroup ageGroup = new AgeGroup();
    List<String> ageGroups = ageGroup.getAgeGroups();

    int classification = 1;
    long previousResultTime = 999999;
    int loopNr = 1;
View Full Code Here

TOP

Related Classes of utils.AgeGroup

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.