Package ejava.projects.eleague.dto
Class Division
- java.lang.Object
-
- ejava.projects.eleague.dto.ReferencedType
-
- ejava.projects.eleague.dto.Division
-
public class Division extends ReferencedType
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <extension base="{http://ejava.info/eLeague/1.0.2009.1}ReferencedType"> <sequence> <element name="group" type="{http://www.w3.org/2001/XMLSchema}token"/> <element name="level" type="{http://www.w3.org/2001/XMLSchema}token"/> <element name="ranking" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> <element ref="{http://ejava.info/eLeague/1.0.2009.1}contact" minOccurs="0"/> <element ref="{http://ejava.info/eLeague/1.0.2009.1}team-season" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}long" /> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Contact
contact
protected String
group
protected long
id
protected String
level
protected Integer
ranking
protected List<TeamSeason>
teamSeason
-
Fields inherited from class ejava.projects.eleague.dto.ReferencedType
refid
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Contact
getContact()
Gets the value of the contact property.String
getGroup()
Gets the value of the group property.long
getId()
Gets the value of the id property.String
getLevel()
Gets the value of the level property.Integer
getRanking()
Gets the value of the ranking property.List<TeamSeason>
getTeamSeason()
Gets the value of the teamSeason property.void
setContact(Contact value)
Sets the value of the contact property.void
setGroup(String value)
Sets the value of the group property.void
setId(long value)
Sets the value of the id property.void
setLevel(String value)
Sets the value of the level property.void
setRanking(Integer value)
Sets the value of the ranking property.-
Methods inherited from class ejava.projects.eleague.dto.ReferencedType
getRefid, setRefid
-
-
-
-
Method Detail
-
getGroup
public String getGroup()
Gets the value of the group property.- Returns:
- possible object is
String
-
setGroup
public void setGroup(String value)
Sets the value of the group property.- Parameters:
value
- allowed object isString
-
getLevel
public String getLevel()
Gets the value of the level property.- Returns:
- possible object is
String
-
setLevel
public void setLevel(String value)
Sets the value of the level property.- Parameters:
value
- allowed object isString
-
getRanking
public Integer getRanking()
Gets the value of the ranking property.- Returns:
- possible object is
String
-
setRanking
public void setRanking(Integer value)
Sets the value of the ranking property.- Parameters:
value
- allowed object isString
-
getContact
public Contact getContact()
Gets the value of the contact property.- Returns:
- possible object is
Contact
-
setContact
public void setContact(Contact value)
Sets the value of the contact property.- Parameters:
value
- allowed object isContact
-
getTeamSeason
public List<TeamSeason> getTeamSeason()
Gets the value of the teamSeason property.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
set
method for the teamSeason property.For example, to add a new item, do as follows:
getTeamSeason().add(newItem);
Objects of the following type(s) are allowed in the list
TeamSeason
-
getId
public long getId()
Gets the value of the id property.
-
setId
public void setId(long value)
Sets the value of the id property.
-
-