// // 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.XmlType; /** * <p>Java class for gameEventAtbat complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="gameEventAtbat"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="num" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="o" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="start_tfs" type="{http://www.w3.org/2001/XMLSchema}long" /> * <attribute name="batter" type="{http://www.w3.org/2001/XMLSchema}long" /> * <attribute name="pitcher" type="{http://www.w3.org/2001/XMLSchema}long" /> * <attribute name="des" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="event" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="b1" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="b2" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="b3" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "gameEventAtbat") public class GameEventAtbat { @XmlAttribute(name = "num") protected Integer num; @XmlAttribute(name = "o") protected Integer o; @XmlAttribute(name = "start_tfs") protected Long startTfs; @XmlAttribute(name = "batter") protected Long batter; @XmlAttribute(name = "pitcher") protected Long pitcher; @XmlAttribute(name = "des") protected String des; @XmlAttribute(name = "event") protected String event; @XmlAttribute(name = "b1") protected String b1; @XmlAttribute(name = "b2") protected String b2; @XmlAttribute(name = "b3") protected String b3; /** * Gets the value of the num property. * * @return * possible object is * {@link Integer } * */ public Integer getNum() { return num; } /** * Sets the value of the num property. * * @param value * allowed object is * {@link Integer } * */ public void setNum(Integer value) { this.num = value; } /** * Gets the value of the o property. * * @return * possible object is * {@link Integer } * */ public Integer getO() { return o; } /** * Sets the value of the o property. * * @param value * allowed object is * {@link Integer } * */ public void setO(Integer value) { this.o = value; } /** * Gets the value of the startTfs property. * * @return * possible object is * {@link Long } * */ public Long getStartTfs() { return startTfs; } /** * Sets the value of the startTfs property. * * @param value * allowed object is * {@link Long } * */ public void setStartTfs(Long value) { this.startTfs = value; } /** * Gets the value of the batter property. * * @return * possible object is * {@link Long } * */ public Long getBatter() { return batter; } /** * Sets the value of the batter property. * * @param value * allowed object is * {@link Long } * */ public void setBatter(Long value) { this.batter = value; } /** * Gets the value of the pitcher property. * * @return * possible object is * {@link Long } * */ public Long getPitcher() { return pitcher; } /** * Sets the value of the pitcher property. * * @param value * allowed object is * {@link Long } * */ public void setPitcher(Long value) { this.pitcher = value; } /** * 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 event property. * * @return * possible object is * {@link String } * */ public String getEvent() { return event; } /** * Sets the value of the event property. * * @param value * allowed object is * {@link String } * */ public void setEvent(String value) { this.event = value; } /** * Gets the value of the b1 property. * * @return * possible object is * {@link String } * */ public String getB1() { return b1; } /** * Sets the value of the b1 property. * * @param value * allowed object is * {@link String } * */ public void setB1(String value) { this.b1 = value; } /** * Gets the value of the b2 property. * * @return * possible object is * {@link String } * */ public String getB2() { return b2; } /** * Sets the value of the b2 property. * * @param value * allowed object is * {@link String } * */ public void setB2(String value) { this.b2 = value; } /** * Gets the value of the b3 property. * * @return * possible object is * {@link String } * */ public String getB3() { return b3; } /** * Sets the value of the b3 property. * * @param value * allowed object is * {@link String } * */ public void setB3(String value) { this.b3 = value; } }