Class ELeague
- java.lang.Object
-
- ejava.projects.eleague.dto.ELeague
-
public class ELeague extends Object
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://ejava.info/eLeague/1.0.2009.1}contact" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://ejava.info/eLeague/1.0.2009.1}league-metadata"/> <element ref="{http://ejava.info/eLeague/1.0.2009.1}club" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://ejava.info/eLeague/1.0.2009.1}season" maxOccurs="unbounded" minOccurs="0"/> <element name="currentSeason" type="{http://www.w3.org/2001/XMLSchema}IDREF"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Club>
club
protected List<Contact>
contact
protected Object
currentSeason
protected LeagueMetadata
leagueMetadata
protected List<Season>
season
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Club>
getClub()
Gets the value of the club property.List<Contact>
getContact()
Gets the value of the contact property.Object
getCurrentSeason()
Gets the value of the currentSeason property.LeagueMetadata
getLeagueMetadata()
Gets the value of the leagueMetadata property.List<Season>
getSeason()
Gets the value of the season property.void
setCurrentSeason(Object value)
Sets the value of the currentSeason property.void
setLeagueMetadata(LeagueMetadata value)
Sets the value of the leagueMetadata property.
-
-
-
Method Detail
-
getContact
public List<Contact> getContact()
Gets the value of the contact 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 contact property.For example, to add a new item, do as follows:
getContact().add(newItem);
Objects of the following type(s) are allowed in the list
Contact
-
getLeagueMetadata
public LeagueMetadata getLeagueMetadata()
Gets the value of the leagueMetadata property.- Returns:
- possible object is
LeagueMetadata
-
setLeagueMetadata
public void setLeagueMetadata(LeagueMetadata value)
Sets the value of the leagueMetadata property.- Parameters:
value
- allowed object isLeagueMetadata
-
getClub
public List<Club> getClub()
Gets the value of the club 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 club property.For example, to add a new item, do as follows:
getClub().add(newItem);
Objects of the following type(s) are allowed in the list
Club
-
getSeason
public List<Season> getSeason()
Gets the value of the season 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 season property.For example, to add a new item, do as follows:
getSeason().add(newItem);
Objects of the following type(s) are allowed in the list
Season
-
getCurrentSeason
public Object getCurrentSeason()
Gets the value of the currentSeason property.- Returns:
- possible object is
Object
-
-