/*----------------------------------------------------------------------------
Copyright (c)2000 TogetherSoft LLC. Patents pending. All rights reserved.
----------------------------------------------------------------------------*/
package RelMgmt.Party;
import java.util.Vector;
/** @stereotype place */
public class Address {
public Vector listCurrentAddressees() {
return new Vector();
}
private int type;
private String lineOne;
private String lineTwo;
private String lineThree;
private String city;
private String stateOrProvince;
private String postalCode;
private String country;
private int applicableInterval;
/**
* @supplierCardinality 0..*
* @clientCardinality 1
*/
private AddressUse lnkUnnamed;
/**
* @supplierCardinality 0..*
* @clientRole ship-to address
* @clientCardinality 0..1
*/
private ProductSaleMgmt.SaleToCustomer.SaleToCustomerDetail lnkUnnamed1;
}
|