org.springframework.batch.sample.domain.football
Class PlayerSummary

java.lang.Object
  extended by org.springframework.batch.sample.domain.football.PlayerSummary

public class PlayerSummary
extends Object

Domain object representing the summary of a given Player's year.

Author:
Lucas Ward

Constructor Summary
PlayerSummary()
           
 
Method Summary
 boolean equals(Object obj)
           
 int getAttempts()
           
 int getCompletes()
           
 String getId()
           
 int getInterceptions()
           
 int getPassingTd()
           
 int getPassingYards()
           
 int getReceptions()
           
 int getReceptionYards()
           
 int getRushes()
           
 int getRushYards()
           
 int getTotalTd()
           
 int getYear()
           
 int hashCode()
           
 void setAttempts(int attempts)
           
 void setCompletes(int completes)
           
 void setId(String id)
           
 void setInterceptions(int interceptions)
           
 void setPassingTd(int passingTd)
           
 void setPassingYards(int passingYards)
           
 void setReceptions(int receptions)
           
 void setReceptionYards(int receptionYards)
           
 void setRushes(int rushes)
           
 void setRushYards(int rushYards)
           
 void setTotalTd(int totalTd)
           
 void setYear(int year)
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

PlayerSummary

public PlayerSummary()
Method Detail

getId

public String getId()

setId

public void setId(String id)

getYear

public int getYear()

setYear

public void setYear(int year)

getCompletes

public int getCompletes()

setCompletes

public void setCompletes(int completes)

getAttempts

public int getAttempts()

setAttempts

public void setAttempts(int attempts)

getPassingYards

public int getPassingYards()

setPassingYards

public void setPassingYards(int passingYards)

getPassingTd

public int getPassingTd()

setPassingTd

public void setPassingTd(int passingTd)

getInterceptions

public int getInterceptions()

setInterceptions

public void setInterceptions(int interceptions)

getRushes

public int getRushes()

setRushes

public void setRushes(int rushes)

getRushYards

public int getRushYards()

setRushYards

public void setRushYards(int rushYards)

getReceptions

public int getReceptions()

setReceptions

public void setReceptions(int receptions)

getReceptionYards

public int getReceptionYards()

setReceptionYards

public void setReceptionYards(int receptionYards)

getTotalTd

public int getTotalTd()

setTotalTd

public void setTotalTd(int totalTd)

toString

public String toString()
Overrides:
toString in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object

hashCode

public int hashCode()
Overrides:
hashCode in class Object


Copyright © 2009 SpringSource. All Rights Reserved.