Class Club
- java.lang.Object
-
- ejava.projects.eleague.dto.ReferencedType
-
- ejava.projects.eleague.dto.Club
-
public class Club 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 ref="{http://ejava.info/eLeague/1.0.2009.1}contact"/> <element ref="{http://ejava.info/eLeague/1.0.2009.1}venue" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://ejava.info/eLeague/1.0.2009.1}team" 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 Contact
getContact()
Gets the value of the contact property.long
getId()
Gets the value of the id property.String
getName()
Gets the value of the name property.List<Team>
getTeam()
Gets the value of the team property.List<Venue>
getVenue()
Gets the value of the venue property.void
setContact(Contact value)
Sets the value of the contact property.void
setId(long value)
Sets the value of the id property.void
setName(String value)
Sets the value of the name 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
-
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
-
getVenue
public List<Venue> getVenue()
Gets the value of the venue 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 venue property.For example, to add a new item, do as follows:
getVenue().add(newItem);
Objects of the following type(s) are allowed in the list
Venue
-
getTeam
public List<Team> getTeam()
Gets the value of the team 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 team property.For example, to add a new item, do as follows:
getTeam().add(newItem);
Objects of the following type(s) are allowed in the list
Team
-
getId
public long getId()
Gets the value of the id property.
-
setId
public void setId(long value)
Sets the value of the id property.
-
-