// // 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 inning complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="inning"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="top" type="{http://gdx.mlb.com/components/schema/1}inningHalf" minOccurs="0"/> * <element name="bottom" type="{http://gdx.mlb.com/components/schema/1}inningHalf" minOccurs="0"/> * </sequence> * <attribute name="num" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="away_team" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="home_team" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="next" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "inning", propOrder = { "top", "bottom" }) public class Inning { protected InningHalf top; protected InningHalf bottom; @XmlAttribute(name = "num") protected Integer num; @XmlAttribute(name = "away_team") protected String awayTeam; @XmlAttribute(name = "home_team") protected String homeTeam; @XmlAttribute(name = "next") protected String next; /** * Gets the value of the top property. * * @return * possible object is * {@link InningHalf } * */ public InningHalf getTop() { return top; } /** * Sets the value of the top property. * * @param value * allowed object is * {@link InningHalf } * */ public void setTop(InningHalf value) { this.top = value; } /** * Gets the value of the bottom property. * * @return * possible object is * {@link InningHalf } * */ public InningHalf getBottom() { return bottom; } /** * Sets the value of the bottom property. * * @param value * allowed object is * {@link InningHalf } * */ public void setBottom(InningHalf 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; } /** * Gets the value of the awayTeam property. * * @return * possible object is * {@link String } * */ public String getAwayTeam() { return awayTeam; } /** * Sets the value of the awayTeam property. * * @param value * allowed object is * {@link String } * */ public void setAwayTeam(String value) { this.awayTeam = value; } /** * Gets the value of the homeTeam property. * * @return * possible object is * {@link String } * */ public String getHomeTeam() { return homeTeam; } /** * Sets the value of the homeTeam property. * * @param value * allowed object is * {@link String } * */ public void setHomeTeam(String value) { this.homeTeam = value; } /** * Gets the value of the next property. * * @return * possible object is * {@link String } * */ public String getNext() { return next; } /** * Sets the value of the next property. * * @param value * allowed object is * {@link String } * */ public void setNext(String value) { this.next = value; } }