コード例 #1
0
 /**
  * Returns the fourth placing horse for the given race.
  */
 private static Horse getFourth(Race r)
 {
     return(r.getFourth());
 }
コード例 #2
0
 /**
  * Returns the placing horse for the given race.
  */
 private static Horse getPlace(Race r)
 {
     return(r.getPlace());
 }
コード例 #3
0
 /**
  * Returns the showing horse for the given race.
  */
 private static Horse getShow(Race r)
 {
     return(r.getShow());
 }
コード例 #4
0
 /**
  * Returns the winning horse for the given race.
  */
 private static Horse getWin(Race r)
 {
     return(r.getWin());
 }