// // 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 gameEventAction complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="gameEventAction"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="o" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="des" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="event" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="tfs" type="{http://www.w3.org/2001/XMLSchema}long" /> * <attribute name="player" type="{http://www.w3.org/2001/XMLSchema}long" /> * <attribute name="pitch" type="{http://www.w3.org/2001/XMLSchema}int" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "gameEventAction") public class GameEventAction { @XmlAttribute(name = "o") protected Integer o; @XmlAttribute(name = "des") protected String des; @XmlAttribute(name = "event") protected String event; @XmlAttribute(name = "tfs") protected Long tfs; @XmlAttribute(name = "player") protected Long player; @XmlAttribute(name = "pitch") protected Integer pitch; /** * 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 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 tfs property. * * @return * possible object is * {@link Long } * */ public Long getTfs() { return tfs; } /** * Sets the value of the tfs property. * * @param value * allowed object is * {@link Long } * */ public void setTfs(Long value) { this.tfs = value; } /** * Gets the value of the player property. * * @return * possible object is * {@link Long } * */ public Long getPlayer() { return player; } /** * Sets the value of the player property. * * @param value * allowed object is * {@link Long } * */ public void setPlayer(Long value) { this.player = value; } /** * Gets the value of the pitch property. * * @return * possible object is * {@link Integer } * */ public Integer getPitch() { return pitch; } /** * Sets the value of the pitch property. * * @param value * allowed object is * {@link Integer } * */ public void setPitch(Integer value) { this.pitch = value; } }