Package org.cxml
Class Correspondent
- java.lang.Object
-
- org.cxml.Correspondent
-
public class Correspondent extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<Contact>contactprotected java.util.List<Extrinsic>extrinsicprotected java.lang.StringpreferredLanguage
-
Constructor Summary
Constructors Constructor Description Correspondent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Contact>getContact()Gets the value of the contact property.java.util.List<Extrinsic>getExtrinsic()Gets the value of the extrinsic property.java.lang.StringgetPreferredLanguage()Gets the value of the preferredLanguage property.voidsetPreferredLanguage(java.lang.String value)Sets the value of the preferredLanguage property.
-
-
-
Method Detail
-
getPreferredLanguage
public java.lang.String getPreferredLanguage()
Gets the value of the preferredLanguage property.- Returns:
- possible object is
String
-
setPreferredLanguage
public void setPreferredLanguage(java.lang.String value)
Sets the value of the preferredLanguage property.- Parameters:
value- allowed object isString
-
getContact
public java.util.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
setmethod 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
-
getExtrinsic
public java.util.List<Extrinsic> getExtrinsic()
Gets the value of the extrinsic 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
setmethod for the extrinsic property.For example, to add a new item, do as follows:
getExtrinsic().add(newItem);Objects of the following type(s) are allowed in the list
Extrinsic
-
-