//
// 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 gameTeam complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="gameTeam">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="code" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="file_code" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="abbrev" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="name_full" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="name_brief" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="w" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="l" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="division_id" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="league_id" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="league" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "gameTeam")
public class GameTeam {
@XmlAttribute(name = "type")
protected String type;
@XmlAttribute(name = "code")
protected String code;
@XmlAttribute(name = "file_code")
protected String fileCode;
@XmlAttribute(name = "abbrev")
protected String abbrev;
@XmlAttribute(name = "id")
protected Integer id;
@XmlAttribute(name = "name")
protected String name;
@XmlAttribute(name = "name_full")
protected String nameFull;
@XmlAttribute(name = "name_brief")
protected String nameBrief;
@XmlAttribute(name = "w")
protected Integer w;
@XmlAttribute(name = "l")
protected Integer l;
@XmlAttribute(name = "division_id")
protected Integer divisionId;
@XmlAttribute(name = "league_id")
protected Integer leagueId;
@XmlAttribute(name = "league")
protected String league;
/**
* 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 code property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCode() {
return code;
}
/**
* Sets the value of the code property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCode(String value) {
this.code = value;
}
/**
* Gets the value of the fileCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFileCode() {
return fileCode;
}
/**
* Sets the value of the fileCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFileCode(String value) {
this.fileCode = value;
}
/**
* Gets the value of the abbrev property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAbbrev() {
return abbrev;
}
/**
* Sets the value of the abbrev property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAbbrev(String value) {
this.abbrev = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setId(Integer value) {
this.id = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the nameFull property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNameFull() {
return nameFull;
}
/**
* Sets the value of the nameFull property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNameFull(String value) {
this.nameFull = value;
}
/**
* Gets the value of the nameBrief property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNameBrief() {
return nameBrief;
}
/**
* Sets the value of the nameBrief property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNameBrief(String value) {
this.nameBrief = value;
}
/**
* Gets the value of the w property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getW() {
return w;
}
/**
* Sets the value of the w property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setW(Integer value) {
this.w = value;
}
/**
* Gets the value of the l property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getL() {
return l;
}
/**
* Sets the value of the l property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setL(Integer value) {
this.l = value;
}
/**
* Gets the value of the divisionId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getDivisionId() {
return divisionId;
}
/**
* Sets the value of the divisionId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setDivisionId(Integer value) {
this.divisionId = value;
}
/**
* Gets the value of the leagueId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getLeagueId() {
return leagueId;
}
/**
* Sets the value of the leagueId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setLeagueId(Integer value) {
this.leagueId = value;
}
/**
* Gets the value of the league property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLeague() {
return league;
}
/**
* Sets the value of the league property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLeague(String value) {
this.league = value;
}
}