Class Season
- java.lang.Object
-
- ejava.projects.eleague.dto.ReferencedType
-
- ejava.projects.eleague.dto.Season
-
public class Season 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="name" type="{http://www.w3.org/2001/XMLSchema}token"/> <element name="starts" type="{http://www.w3.org/2001/XMLSchema}date"/> <element name="ends" type="{http://www.w3.org/2001/XMLSchema}date"/> <element ref="{http://ejava.info/eLeague/1.0.2009.1}division" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://ejava.info/eLeague/1.0.2009.1}contest" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}long" /> </extension> </complexContent> </complexType>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Contest>
getContest()
Gets the value of the contest property.List<Division>
getDivision()
Gets the value of the division property.Date
getEnds()
Gets the value of the ends property.long
getId()
Gets the value of the id property.String
getName()
Gets the value of the name property.Date
getStarts()
Gets the value of the starts property.void
setEnds(Date value)
Sets the value of the ends property.void
setId(long value)
Sets the value of the id property.void
setName(String value)
Sets the value of the name property.void
setStarts(Date value)
Sets the value of the starts property.-
Methods inherited from class ejava.projects.eleague.dto.ReferencedType
getRefid, setRefid
-
-
-
-
Method Detail
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value
- allowed object isString
-
getStarts
public Date getStarts()
Gets the value of the starts property.- Returns:
- possible object is
String
-
setStarts
public void setStarts(Date value)
Sets the value of the starts property.- Parameters:
value
- allowed object isString
-
getEnds
public Date getEnds()
Gets the value of the ends property.- Returns:
- possible object is
String
-
setEnds
public void setEnds(Date value)
Sets the value of the ends property.- Parameters:
value
- allowed object isString
-
getDivision
public List<Division> getDivision()
Gets the value of the division 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 division property.For example, to add a new item, do as follows:
getDivision().add(newItem);
Objects of the following type(s) are allowed in the list
Division
-
getContest
public List<Contest> getContest()
Gets the value of the contest 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 contest property.For example, to add a new item, do as follows:
getContest().add(newItem);
Objects of the following type(s) are allowed in the list
Contest
-
getId
public long getId()
Gets the value of the id property.
-
setId
public void setId(long value)
Sets the value of the id property.
-
-