Example #1
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);
 }
Example #2
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());
 }