//
// 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for gameEventInning complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="gameEventInning">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="top" type="{http://gdx.mlb.com/components/schema/1}gameEventInningHalf"/>
* <element name="bottom" type="{http://gdx.mlb.com/components/schema/1}gameEventInningHalf"/>
* </sequence>
* <attribute name="num" type="{http://www.w3.org/2001/XMLSchema}int" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "gameEventInning", propOrder = {
"top",
"bottom"
})
public class GameEventInning {
@XmlElement(required = true)
protected GameEventInningHalf top;
@XmlElement(required = true)
protected GameEventInningHalf bottom;
@XmlAttribute(name = "num")
protected Integer num;
/**
* Gets the value of the top property.
*
* @return
* possible object is
* {@link GameEventInningHalf }
*
*/
public GameEventInningHalf getTop() {
return top;
}
/**
* Sets the value of the top property.
*
* @param value
* allowed object is
* {@link GameEventInningHalf }
*
*/
public void setTop(GameEventInningHalf value) {
this.top = value;
}
/**
* Gets the value of the bottom property.
*
* @return
* possible object is
* {@link GameEventInningHalf }
*
*/
public GameEventInningHalf getBottom() {
return bottom;
}
/**
* Sets the value of the bottom property.
*
* @param value
* allowed object is
* {@link GameEventInningHalf }
*
*/
public void setBottom(GameEventInningHalf value) {
this.bottom = value;
}
/**
* 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;
}
}