Package entities

Examples of entities.ResultComparator


  @Override
  public void generateHeats(String eventName, String poolType,
      String competitionTitle, String heatGender) {
    setResults(operations.returnResults(operations.returnEvent(eventName), heatGender, "Mixt"));
    Collections.sort(results, new ResultComparator());
    operations.generateResultTable(results,
        operations.returnEvent(eventName), heatGender);
    Event event = operations.returnEvent(eventName);
    if (heatGender.equals("Mixt")) {
      ResultWriter rWriterM = new ResultWriter(event, competitionTitle, heatGender, "M");     
View Full Code Here


    PdfPTable table = new PdfPTable(tableWidth);

    // 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;
View Full Code Here

TOP

Related Classes of entities.ResultComparator

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.