// // 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 benchPitcher complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="benchPitcher"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}long" /> * <attribute name="last" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="t" 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="era" type="{http://www.w3.org/2001/XMLSchema}decimal" /> * <attribute name="g" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="sv" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="ip" type="{http://www.w3.org/2001/XMLSchema}decimal" /> * <attribute name="h" 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" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "benchPitcher") public class BenchPitcher { @XmlAttribute(name = "id") protected Long id; @XmlAttribute(name = "last") protected String last; @XmlAttribute(name = "t") protected Integer t; @XmlAttribute(name = "w") protected Integer w; @XmlAttribute(name = "l") protected Integer l; @XmlAttribute(name = "era") protected BigDecimal era; @XmlAttribute(name = "g") protected Integer g; @XmlAttribute(name = "sv") protected Integer sv; @XmlAttribute(name = "ip") protected BigDecimal ip; @XmlAttribute(name = "h") protected Integer h; @XmlAttribute(name = "bb") protected Integer bb; @XmlAttribute(name = "so") protected Integer so; /** * 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 last property. * * @return * possible object is * {@link String } * */ public String getLast() { return last; } /** * Sets the value of the last property. * * @param value * allowed object is * {@link String } * */ public void setLast(String value) { this.last = value; } /** * Gets the value of the t property. * * @return * possible object is * {@link Integer } * */ public Integer getT() { return t; } /** * Sets the value of the t property. * * @param value * allowed object is * {@link Integer } * */ public void setT(Integer value) { this.t = 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 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 g property. * * @return * possible object is * {@link Integer } * */ public Integer getG() { return g; } /** * Sets the value of the g property. * * @param value * allowed object is * {@link Integer } * */ public void setG(Integer value) { this.g = 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 ip property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getIp() { return ip; } /** * Sets the value of the ip property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setIp(BigDecimal value) { this.ip = 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 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; } }