/*----------------------------------------------------------------------------
Copyright (c)2000 TogetherSoft LLC. Patents pending. All rights reserved.
----------------------------------------------------------------------------*/
package AccountingMgmt.Account;
import java.util.Vector;
/** @stereotype thing */
public class SupplierAccount extends Account {
public Vector calcPayablesByAge() {
return new Vector();
}
public static Vector listPayablesByAge() {
return new Vector();
}
private int paymentTerms;
/**
*@shapeType AggregationLink
* @associates <b>SupplierAccount</b>
* @supplierCardinality 0..*
* @clientCardinality 0..1
* @supplierRole sub
*/
private Vector lnkUnnamed;
}
|