示例#1
0
 /**
  * Returns a list with all the phone numbers in this object
  *
  * @return
  */
 public List<PhoneNumber> getPhoneNumber() {
   ArrayList<PhoneNumber> resp = new ArrayList<PhoneNumber>();
   for (com.uvasoftware.core.primitives.PhoneNumber e : primitive.getPhoneNumber()) {
     resp.add(new PhoneNumber(e));
   }
   return (resp);
 }
示例#2
0
 /**
  * Returns a list of all the <code>Address</code> contained in this message
  *
  * @return a list containing a bunch of Address objects
  */
 public List<Address> getAddress() {
   ArrayList<Address> resp = new ArrayList<Address>();
   for (com.uvasoftware.core.primitives.Address e : primitive.getAddress()) {
     resp.add(new Address(e));
   }
   return (resp);
 }
示例#3
0
 /**
  * Returns a list of all the <code>Email</code> contained in this message
  *
  * @return a list containing a bunch of Email objects
  */
 public List<Email> getEmail() {
   ArrayList<Email> resp = new ArrayList<Email>();
   for (com.uvasoftware.core.primitives.Email e : primitive.getEmail()) {
     resp.add(new Email(e));
   }
   return (resp);
 }
示例#4
0
 /**
  * Returns a list of all the <code>OtherId</code> contained in this message
  *
  * @return a list containing a bunch of OtherId
  */
 public List<OtherId> getOtherId() {
   ArrayList<OtherId> resp = new ArrayList<OtherId>();
   for (com.uvasoftware.core.primitives.OtherId e : primitive.getOtherId()) {
     resp.add(new OtherId(e));
   }
   return (resp);
 }
示例#5
0
 /**
  * Returns a list of all the <code>ElectronicId</code> contained in this message
  *
  * @return a list containing a bunch of ElectronicId
  */
 public List<ElectronicId> getElectronicId() {
   ArrayList<ElectronicId> resp = new ArrayList<ElectronicId>();
   for (com.uvasoftware.core.primitives.ElectronicId e : primitive.getElectronicId()) {
     resp.add(new ElectronicId(e));
   }
   return (resp);
 }
示例#6
0
 /**
  * Adds a new <code>PhoneNumber</code> field to the <code>StaffPersonal</code> object
  *
  * @param value the <code>PhoneNumber</code> to be added
  */
 public void addPhoneNumber(PhoneNumber value) {
   primitive
       .getPhoneNumber()
       .add((com.uvasoftware.core.primitives.PhoneNumber) value.getPrimitive());
 }
示例#7
0
 /**
  * Gets the <code>Demographics</code> field of the <code>StaffPersonal</code> object
  *
  * @return a <code>Demographics</code> object
  */
 public Demographics getDemographics() {
   return (new Demographics(primitive.getDemographics()));
 }
示例#8
0
 /**
  * Sets the <code>Demographics</code> field of the <code>StaffPersonal</code> object
  *
  * @param value the <code>Demographics</code> object
  */
 public void setDemographics(Demographics value) {
   primitive.setDemographics((com.uvasoftware.core.primitives.Demographics) value.getPrimitive());
 }
示例#9
0
 /**
  * Gets the <code>Name</code> field of the <code>StaffPersonal</code> object
  *
  * @return the Name object associated with this object
  */
 public Name getName() {
   return (new Name(primitive.getName()));
 }
示例#10
0
 /**
  * Sets the <code>Name</code> field of the <code>StaffPersonal</code> object
  *
  * @param value the name object associated with this student
  */
 public void setName(Name value) {
   primitive.setName((com.uvasoftware.core.primitives.Name) value.getPrimitive());
 }
示例#11
0
 /**
  * Adds a new <code>OtherId</code> field to the <code>StaffPersonal</code> object
  *
  * @param value the <code>OtherId</code> to be added
  */
 public void addOtherId(OtherId value) {
   primitive.getOtherId().add((com.uvasoftware.core.primitives.OtherId) value.getPrimitive());
 }