//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-7
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2010.10.24 at 10:41:34 PM CDT
//
package org.statmantis.mport.mlb.gen;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for boxscore complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="boxscore">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="linescore" type="{http://gdx.mlb.com/components/schema/1}boxscoreLinescore"/>
* <element name="pitching" type="{http://gdx.mlb.com/components/schema/1}boxscorePitching"/>
* <element name="batting" type="{http://gdx.mlb.com/components/schema/1}boxscoreBatting"/>
* <element name="pitching" type="{http://gdx.mlb.com/components/schema/1}boxscorePitching"/>
* <element name="batting" type="{http://gdx.mlb.com/components/schema/1}boxscoreBatting"/>
* <element name="game_info" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* <attribute name="game_id" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="game_pk" type="{http://www.w3.org/2001/XMLSchema}long" />
* <attribute name="home_sport_code" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="away_team_code" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="home_team_code" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="away_id" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="home_id" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="away_fname" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="home_fname" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="away_sname" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="home_sname" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="date" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="away_wins" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="away_loss" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="home_wins" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="home_loss" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="status_ind" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "boxscore", propOrder = {
"linescore",
"awayPitching",
"homeBatting",
"homePitching",
"awayBatting",
"gameInfo"
})
public class Boxscore {
@XmlElement(required = true)
protected BoxscoreLinescore linescore;
@XmlElement(name = "pitching", required = true)
protected BoxscorePitching awayPitching;
@XmlElement(name = "batting", required = true)
protected BoxscoreBatting homeBatting;
@XmlElement(name = "pitching", required = true)
protected BoxscorePitching homePitching;
@XmlElement(name = "batting", required = true)
protected BoxscoreBatting awayBatting;
@XmlElement(name = "game_info", required = true)
protected String gameInfo;
@XmlAttribute(name = "game_id")
protected String gameId;
@XmlAttribute(name = "game_pk")
protected Long gamePk;
@XmlAttribute(name = "home_sport_code")
protected String homeSportCode;
@XmlAttribute(name = "away_team_code")
protected String awayTeamCode;
@XmlAttribute(name = "home_team_code")
protected String homeTeamCode;
@XmlAttribute(name = "away_id")
protected Integer awayId;
@XmlAttribute(name = "home_id")
protected Integer homeId;
@XmlAttribute(name = "away_fname")
protected String awayFname;
@XmlAttribute(name = "home_fname")
protected String homeFname;
@XmlAttribute(name = "away_sname")
protected String awaySname;
@XmlAttribute(name = "home_sname")
protected String homeSname;
@XmlAttribute(name = "date")
protected String date;
@XmlAttribute(name = "away_wins")
protected Integer awayWins;
@XmlAttribute(name = "away_loss")
protected Integer awayLoss;
@XmlAttribute(name = "home_wins")
protected Integer homeWins;
@XmlAttribute(name = "home_loss")
protected Integer homeLoss;
@XmlAttribute(name = "status_ind")
protected String statusInd;
/**
* Gets the value of the linescore property.
*
* @return
* possible object is
* {@link BoxscoreLinescore }
*
*/
public BoxscoreLinescore getLinescore() {
return linescore;
}
/**
* Sets the value of the linescore property.
*
* @param value
* allowed object is
* {@link BoxscoreLinescore }
*
*/
public void setLinescore(BoxscoreLinescore value) {
this.linescore = value;
}
/**
* Gets the value of the awayPitching property.
*
* @return
* possible object is
* {@link BoxscorePitching }
*
*/
public BoxscorePitching getAwayPitching() {
return awayPitching;
}
/**
* Sets the value of the awayPitching property.
*
* @param value
* allowed object is
* {@link BoxscorePitching }
*
*/
public void setAwayPitching(BoxscorePitching value) {
this.awayPitching = value;
}
/**
* Gets the value of the homeBatting property.
*
* @return
* possible object is
* {@link BoxscoreBatting }
*
*/
public BoxscoreBatting getHomeBatting() {
return homeBatting;
}
/**
* Sets the value of the homeBatting property.
*
* @param value
* allowed object is
* {@link BoxscoreBatting }
*
*/
public void setHomeBatting(BoxscoreBatting value) {
this.homeBatting = value;
}
/**
* Gets the value of the homePitching property.
*
* @return
* possible object is
* {@link BoxscorePitching }
*
*/
public BoxscorePitching getHomePitching() {
return homePitching;
}
/**
* Sets the value of the homePitching property.
*
* @param value
* allowed object is
* {@link BoxscorePitching }
*
*/
public void setHomePitching(BoxscorePitching value) {
this.homePitching = value;
}
/**
* Gets the value of the awayBatting property.
*
* @return
* possible object is
* {@link BoxscoreBatting }
*
*/
public BoxscoreBatting getAwayBatting() {
return awayBatting;
}
/**
* Sets the value of the awayBatting property.
*
* @param value
* allowed object is
* {@link BoxscoreBatting }
*
*/
public void setAwayBatting(BoxscoreBatting value) {
this.awayBatting = value;
}
/**
* Gets the value of the gameInfo property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGameInfo() {
return gameInfo;
}
/**
* Sets the value of the gameInfo property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGameInfo(String value) {
this.gameInfo = value;
}
/**
* Gets the value of the gameId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGameId() {
return gameId;
}
/**
* Sets the value of the gameId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGameId(String value) {
this.gameId = value;
}
/**
* Gets the value of the gamePk property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getGamePk() {
return gamePk;
}
/**
* Sets the value of the gamePk property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setGamePk(Long value) {
this.gamePk = value;
}
/**
* Gets the value of the homeSportCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHomeSportCode() {
return homeSportCode;
}
/**
* Sets the value of the homeSportCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHomeSportCode(String value) {
this.homeSportCode = value;
}
/**
* Gets the value of the awayTeamCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAwayTeamCode() {
return awayTeamCode;
}
/**
* Sets the value of the awayTeamCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAwayTeamCode(String value) {
this.awayTeamCode = value;
}
/**
* Gets the value of the homeTeamCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHomeTeamCode() {
return homeTeamCode;
}
/**
* Sets the value of the homeTeamCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHomeTeamCode(String value) {
this.homeTeamCode = value;
}
/**
* Gets the value of the awayId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getAwayId() {
return awayId;
}
/**
* Sets the value of the awayId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setAwayId(Integer value) {
this.awayId = value;
}
/**
* Gets the value of the homeId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getHomeId() {
return homeId;
}
/**
* Sets the value of the homeId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setHomeId(Integer value) {
this.homeId = value;
}
/**
* Gets the value of the awayFname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAwayFname() {
return awayFname;
}
/**
* Sets the value of the awayFname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAwayFname(String value) {
this.awayFname = value;
}
/**
* Gets the value of the homeFname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHomeFname() {
return homeFname;
}
/**
* Sets the value of the homeFname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHomeFname(String value) {
this.homeFname = value;
}
/**
* Gets the value of the awaySname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAwaySname() {
return awaySname;
}
/**
* Sets the value of the awaySname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAwaySname(String value) {
this.awaySname = value;
}
/**
* Gets the value of the homeSname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHomeSname() {
return homeSname;
}
/**
* Sets the value of the homeSname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHomeSname(String value) {
this.homeSname = value;
}
/**
* Gets the value of the date property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDate() {
return date;
}
/**
* Sets the value of the date property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDate(String value) {
this.date = value;
}
/**
* Gets the value of the awayWins property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getAwayWins() {
return awayWins;
}
/**
* Sets the value of the awayWins property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setAwayWins(Integer value) {
this.awayWins = value;
}
/**
* Gets the value of the awayLoss property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getAwayLoss() {
return awayLoss;
}
/**
* Sets the value of the awayLoss property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setAwayLoss(Integer value) {
this.awayLoss = value;
}
/**
* Gets the value of the homeWins property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getHomeWins() {
return homeWins;
}
/**
* Sets the value of the homeWins property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setHomeWins(Integer value) {
this.homeWins = value;
}
/**
* Gets the value of the homeLoss property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getHomeLoss() {
return homeLoss;
}
/**
* Sets the value of the homeLoss property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setHomeLoss(Integer value) {
this.homeLoss = value;
}
/**
* Gets the value of the statusInd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStatusInd() {
return statusInd;
}
/**
* Sets the value of the statusInd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStatusInd(String value) {
this.statusInd = value;
}
}