// // 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 java.math.BigDecimal; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for boxscorePitching complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="boxscorePitching"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="pitcher" type="{http://gdx.mlb.com/components/schema/1}boxscorePitcher" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="team_flag" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="out" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="h" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="r" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="er" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="bb" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="so" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="hr" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="bf" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="era" type="{http://www.w3.org/2001/XMLSchema}decimal" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "boxscorePitching", propOrder = { "pitcher" }) public class BoxscorePitching { protected List<BoxscorePitcher> pitcher; @XmlAttribute(name = "team_flag") protected String teamFlag; @XmlAttribute(name = "out") protected Integer out; @XmlAttribute(name = "h") protected Integer h; @XmlAttribute(name = "r") protected Integer r; @XmlAttribute(name = "er") protected Integer er; @XmlAttribute(name = "bb") protected Integer bb; @XmlAttribute(name = "so") protected Integer so; @XmlAttribute(name = "hr") protected Integer hr; @XmlAttribute(name = "bf") protected Integer bf; @XmlAttribute(name = "era") protected BigDecimal era; /** * Gets the value of the pitcher property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the pitcher property. * * <p> * For example, to add a new item, do as follows: * <pre> * getPitcher().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link BoxscorePitcher } * * */ public List<BoxscorePitcher> getPitcher() { if (pitcher == null) { pitcher = new ArrayList<BoxscorePitcher>(); } return this.pitcher; } /** * Gets the value of the teamFlag property. * * @return * possible object is * {@link String } * */ public String getTeamFlag() { return teamFlag; } /** * Sets the value of the teamFlag property. * * @param value * allowed object is * {@link String } * */ public void setTeamFlag(String value) { this.teamFlag = value; } /** * Gets the value of the out property. * * @return * possible object is * {@link Integer } * */ public Integer getOut() { return out; } /** * Sets the value of the out property. * * @param value * allowed object is * {@link Integer } * */ public void setOut(Integer value) { this.out = value; } /** * Gets the value of the h property. * * @return * possible object is * {@link Integer } * */ public Integer getH() { return h; } /** * Sets the value of the h property. * * @param value * allowed object is * {@link Integer } * */ public void setH(Integer value) { this.h = value; } /** * Gets the value of the r property. * * @return * possible object is * {@link Integer } * */ public Integer getR() { return r; } /** * Sets the value of the r property. * * @param value * allowed object is * {@link Integer } * */ public void setR(Integer value) { this.r = value; } /** * Gets the value of the er property. * * @return * possible object is * {@link Integer } * */ public Integer getEr() { return er; } /** * Sets the value of the er property. * * @param value * allowed object is * {@link Integer } * */ public void setEr(Integer value) { this.er = value; } /** * Gets the value of the bb property. * * @return * possible object is * {@link Integer } * */ public Integer getBb() { return bb; } /** * Sets the value of the bb property. * * @param value * allowed object is * {@link Integer } * */ public void setBb(Integer value) { this.bb = value; } /** * Gets the value of the so property. * * @return * possible object is * {@link Integer } * */ public Integer getSo() { return so; } /** * Sets the value of the so property. * * @param value * allowed object is * {@link Integer } * */ public void setSo(Integer value) { this.so = value; } /** * Gets the value of the hr property. * * @return * possible object is * {@link Integer } * */ public Integer getHr() { return hr; } /** * Sets the value of the hr property. * * @param value * allowed object is * {@link Integer } * */ public void setHr(Integer value) { this.hr = value; } /** * Gets the value of the bf property. * * @return * possible object is * {@link Integer } * */ public Integer getBf() { return bf; } /** * Sets the value of the bf property. * * @param value * allowed object is * {@link Integer } * */ public void setBf(Integer value) { this.bf = value; } /** * Gets the value of the era property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getEra() { return era; } /** * Sets the value of the era property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setEra(BigDecimal value) { this.era = value; } }