// // 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 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 boxscorePitcher complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="boxscorePitcher"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}long" /> * <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="pos" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="out" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="bf" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="er" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="r" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="h" 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="bb" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="w" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="l" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="sv" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="bs" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="hld" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="era" type="{http://www.w3.org/2001/XMLSchema}decimal" /> * <attribute name="note" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "boxscorePitcher") public class BoxscorePitcher { @XmlAttribute(name = "id") protected Long id; @XmlAttribute(name = "name") protected String name; @XmlAttribute(name = "pos") protected String pos; @XmlAttribute(name = "out") protected Integer out; @XmlAttribute(name = "bf") protected Integer bf; @XmlAttribute(name = "er") protected Integer er; @XmlAttribute(name = "r") protected Integer r; @XmlAttribute(name = "h") protected Integer h; @XmlAttribute(name = "so") protected Integer so; @XmlAttribute(name = "hr") protected Integer hr; @XmlAttribute(name = "bb") protected Integer bb; @XmlAttribute(name = "w") protected Integer w; @XmlAttribute(name = "l") protected Integer l; @XmlAttribute(name = "sv") protected Integer sv; @XmlAttribute(name = "bs") protected Integer bs; @XmlAttribute(name = "hld") protected Integer hld; @XmlAttribute(name = "era") protected BigDecimal era; @XmlAttribute(name = "note") protected String note; /** * Gets the value of the id property. * * @return * possible object is * {@link Long } * */ public Long getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link Long } * */ public void setId(Long value) { this.id = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the pos property. * * @return * possible object is * {@link String } * */ public String getPos() { return pos; } /** * Sets the value of the pos property. * * @param value * allowed object is * {@link String } * */ public void setPos(String value) { this.pos = 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 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 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 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 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 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 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 w property. * * @return * possible object is * {@link Integer } * */ public Integer getW() { return w; } /** * Sets the value of the w property. * * @param value * allowed object is * {@link Integer } * */ public void setW(Integer value) { this.w = value; } /** * Gets the value of the l property. * * @return * possible object is * {@link Integer } * */ public Integer getL() { return l; } /** * Sets the value of the l property. * * @param value * allowed object is * {@link Integer } * */ public void setL(Integer value) { this.l = value; } /** * Gets the value of the sv property. * * @return * possible object is * {@link Integer } * */ public Integer getSv() { return sv; } /** * Sets the value of the sv property. * * @param value * allowed object is * {@link Integer } * */ public void setSv(Integer value) { this.sv = value; } /** * Gets the value of the bs property. * * @return * possible object is * {@link Integer } * */ public Integer getBs() { return bs; } /** * Sets the value of the bs property. * * @param value * allowed object is * {@link Integer } * */ public void setBs(Integer value) { this.bs = value; } /** * Gets the value of the hld property. * * @return * possible object is * {@link Integer } * */ public Integer getHld() { return hld; } /** * Sets the value of the hld property. * * @param value * allowed object is * {@link Integer } * */ public void setHld(Integer value) { this.hld = 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; } /** * Gets the value of the note property. * * @return * possible object is * {@link String } * */ public String getNote() { return note; } /** * Sets the value of the note property. * * @param value * allowed object is * {@link String } * */ public void setNote(String value) { this.note = value; } }