// // 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 batterPlayerStat complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="batterPlayerStat"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="des" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="avg" type="{http://www.w3.org/2001/XMLSchema}decimal" /> * <attribute name="ab" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="hr" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="rbi" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="ops" type="{http://www.w3.org/2001/XMLSchema}decimal" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "batterPlayerStat") public class BatterPlayerStat { @XmlAttribute(name = "des") protected String des; @XmlAttribute(name = "avg") protected BigDecimal avg; @XmlAttribute(name = "ab") protected Integer ab; @XmlAttribute(name = "hr") protected Integer hr; @XmlAttribute(name = "rbi") protected Integer rbi; @XmlAttribute(name = "ops") protected BigDecimal ops; /** * Gets the value of the des property. * * @return * possible object is * {@link String } * */ public String getDes() { return des; } /** * Sets the value of the des property. * * @param value * allowed object is * {@link String } * */ public void setDes(String value) { this.des = value; } /** * Gets the value of the avg property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getAvg() { return avg; } /** * Sets the value of the avg property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setAvg(BigDecimal value) { this.avg = value; } /** * Gets the value of the ab property. * * @return * possible object is * {@link Integer } * */ public Integer getAb() { return ab; } /** * Sets the value of the ab property. * * @param value * allowed object is * {@link Integer } * */ public void setAb(Integer value) { this.ab = 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 rbi property. * * @return * possible object is * {@link Integer } * */ public Integer getRbi() { return rbi; } /** * Sets the value of the rbi property. * * @param value * allowed object is * {@link Integer } * */ public void setRbi(Integer value) { this.rbi = value; } /** * Gets the value of the ops property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getOps() { return ops; } /** * Sets the value of the ops property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setOps(BigDecimal value) { this.ops = value; } }