View Javadoc
1 package net.mlw.fball.bo; 2 3 /*** 4 * @author Matthew L. Wilson 5 * @version $Revision: 1.1 $ $Date: 2004/04/01 21:51:07 $ 6 */ 7 public class SeasonStats extends Stats 8 { 9 /*** Needed for jdo */ 10 protected SeasonStats() 11 { 12 13 } 14 15 /*** 16 * @param player 17 * @param season 18 */ 19 public SeasonStats(Player player, Integer season) 20 { 21 setPlayer(player); 22 setSeason(season); 23 } 24 }

This page was automatically generated by Maven