Class EntryReceiver
-
- All Implemented Interfaces:
public class EntryReceiver
Java class for EntryReceiver complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="EntryReceiver"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Address" type="{http://www.orienteering.org/datastandard/3.0}Address" maxOccurs="unbounded" minOccurs="0"/> <element name="Contact" type="{http://www.orienteering.org/datastandard/3.0}Contact" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description EntryReceiver()
-
Method Summary
Modifier and Type Method Description List<Address>
getAddress()
Gets the value of the address property. List<Contact>
getContact()
Gets the value of the contact property. -
-
Method Detail
-
getAddress
List<Address> getAddress()
Gets the value of the address 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 address property.For example, to add a new item, do as follows:
getAddress().add(newItem);
Objects of the following type(s) are allowed in the list Address
- Returns:
Thevalue of the address property.
-
getContact
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
- Returns:
Thevalue of the contact property.
-
-
-
-