//
// 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.math.BigDecimal;
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 inningHip complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="inningHip">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="des" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="x" type="{http://www.w3.org/2001/XMLSchema}decimal" />
* <attribute name="y" type="{http://www.w3.org/2001/XMLSchema}decimal" />
* <attribute name="batter" type="{http://www.w3.org/2001/XMLSchema}long" />
* <attribute name="pitcher" type="{http://www.w3.org/2001/XMLSchema}long" />
* <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="team" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="inning" type="{http://www.w3.org/2001/XMLSchema}int" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "inningHip")
public class InningHip {
@XmlAttribute(name = "des")
protected String des;
@XmlAttribute(name = "x")
protected BigDecimal x;
@XmlAttribute(name = "y")
protected BigDecimal y;
@XmlAttribute(name = "batter")
protected Long batter;
@XmlAttribute(name = "pitcher")
protected Long pitcher;
@XmlAttribute(name = "type")
protected String type;
@XmlAttribute(name = "team")
protected String team;
@XmlAttribute(name = "inning")
protected Integer inning;
/**
* Gets the value of the des property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDes() {
return des;
}
/**
* Sets the value of the des property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDes(String value) {
this.des = value;
}
/**
* Gets the value of the x property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getX() {
return x;
}
/**
* Sets the value of the x property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setX(BigDecimal value) {
this.x = value;
}
/**
* Gets the value of the y property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getY() {
return y;
}
/**
* Sets the value of the y property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setY(BigDecimal value) {
this.y = value;
}
/**
* Gets the value of the batter property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getBatter() {
return batter;
}
/**
* Sets the value of the batter property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setBatter(Long value) {
this.batter = value;
}
/**
* Gets the value of the pitcher property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getPitcher() {
return pitcher;
}
/**
* Sets the value of the pitcher property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setPitcher(Long value) {
this.pitcher = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the team property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTeam() {
return team;
}
/**
* Sets the value of the team property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTeam(String value) {
this.team = 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;
}
}