// // 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.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for bench complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="bench"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="away" type="{http://gdx.mlb.com/components/schema/1}benchTeam"/> * <element name="home" type="{http://gdx.mlb.com/components/schema/1}benchTeam"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "bench", propOrder = { "away", "home" }) public class Bench { @XmlElement(required = true) protected BenchTeam away; @XmlElement(required = true) protected BenchTeam home; /** * Gets the value of the away property. * * @return * possible object is * {@link BenchTeam } * */ public BenchTeam getAway() { return away; } /** * Sets the value of the away property. * * @param value * allowed object is * {@link BenchTeam } * */ public void setAway(BenchTeam value) { this.away = value; } /** * Gets the value of the home property. * * @return * possible object is * {@link BenchTeam } * */ public BenchTeam getHome() { return home; } /** * Sets the value of the home property. * * @param value * allowed object is * {@link BenchTeam } * */ public void setHome(BenchTeam value) { this.home = value; } }