// // 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 java.util.ArrayList; import java.util.List; 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 gameEventGame complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="gameEventGame"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="inning" type="{http://gdx.mlb.com/components/schema/1}gameEventInning" maxOccurs="unbounded" minOccurs="0"/> * <element name="atBat"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="pid" type="{http://www.w3.org/2001/XMLSchema}long" /> * </restriction> * </complexContent> * </complexType> * </element> * <element name="deck"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="pid" type="{http://www.w3.org/2001/XMLSchema}long" /> * </restriction> * </complexContent> * </complexType> * </element> * <element name="hole"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="pid" type="{http://www.w3.org/2001/XMLSchema}long" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "gameEventGame", propOrder = { "inning", "atBat", "deck", "hole" }) public class GameEventGame { protected List<GameEventInning> inning; @XmlElement(required = true) protected GameEventGame.AtBat atBat; @XmlElement(required = true) protected GameEventGame.Deck deck; @XmlElement(required = true) protected GameEventGame.Hole hole; /** * Gets the value of the inning property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the inning property. * * <p> * For example, to add a new item, do as follows: * <pre> * getInning().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link GameEventInning } * * */ public List<GameEventInning> getInning() { if (inning == null) { inning = new ArrayList<GameEventInning>(); } return this.inning; } /** * Gets the value of the atBat property. * * @return * possible object is * {@link GameEventGame.AtBat } * */ public GameEventGame.AtBat getAtBat() { return atBat; } /** * Sets the value of the atBat property. * * @param value * allowed object is * {@link GameEventGame.AtBat } * */ public void setAtBat(GameEventGame.AtBat value) { this.atBat = value; } /** * Gets the value of the deck property. * * @return * possible object is * {@link GameEventGame.Deck } * */ public GameEventGame.Deck getDeck() { return deck; } /** * Sets the value of the deck property. * * @param value * allowed object is * {@link GameEventGame.Deck } * */ public void setDeck(GameEventGame.Deck value) { this.deck = value; } /** * Gets the value of the hole property. * * @return * possible object is * {@link GameEventGame.Hole } * */ public GameEventGame.Hole getHole() { return hole; } /** * Sets the value of the hole property. * * @param value * allowed object is * {@link GameEventGame.Hole } * */ public void setHole(GameEventGame.Hole value) { this.hole = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="pid" type="{http://www.w3.org/2001/XMLSchema}long" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class AtBat { @XmlAttribute(name = "pid") protected Long pid; /** * Gets the value of the pid property. * * @return * possible object is * {@link Long } * */ public Long getPid() { return pid; } /** * Sets the value of the pid property. * * @param value * allowed object is * {@link Long } * */ public void setPid(Long value) { this.pid = value; } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="pid" type="{http://www.w3.org/2001/XMLSchema}long" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class Deck { @XmlAttribute(name = "pid") protected Long pid; /** * Gets the value of the pid property. * * @return * possible object is * {@link Long } * */ public Long getPid() { return pid; } /** * Sets the value of the pid property. * * @param value * allowed object is * {@link Long } * */ public void setPid(Long value) { this.pid = value; } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="pid" type="{http://www.w3.org/2001/XMLSchema}long" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class Hole { @XmlAttribute(name = "pid") protected Long pid; /** * Gets the value of the pid property. * * @return * possible object is * {@link Long } * */ public Long getPid() { return pid; } /** * Sets the value of the pid property. * * @param value * allowed object is * {@link Long } * */ public void setPid(Long value) { this.pid = value; } } }