OK, now I have another question. how can I relate the player to the team stats?
right now the way I have it is that the team class simply tracks the records of each team in the league, but there is an obvious relationship between the team and its players and also between the player and his/her team. How would I set that up since the team class will not have the same number or records ad the player class, a simple join will not work. I have a "team" attribute for each player. how can I use that to do what I want? should I perhaps use a roster class and list the player and the team?

