FileDocCategorySizeDatePackage
Address.javaAPI DocExample1020Thu Feb 17 20:01:06 GMT 2000RelMgmt.Party

Address.java

/*----------------------------------------------------------------------------
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;
}