Ejemplo n.º 1
0
 public int compareTo(Scout s) {
   if (marks == s.getMarks()) {
     return dateOfBirth.compareTo(s.getDateOfBirth());
   }
   return marks - s.getMarks();
 }