//
// 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 eventLogEvent complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="eventLogEvent">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="number" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="inning" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "eventLogEvent")
public class EventLogEvent {
@XmlAttribute(name = "number")
protected Integer number;
@XmlAttribute(name = "inning")
protected Integer inning;
@XmlAttribute(name = "description")
protected String description;
/**
* Gets the value of the number property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getNumber() {
return number;
}
/**
* Sets the value of the number property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setNumber(Integer value) {
this.number = value;
}
/**
* Gets the value of the inning property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getInning() {
return inning;
}
/**
* Sets the value of the inning property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setInning(Integer value) {
this.inning = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
}