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