/*----------------------------------------------------------------------------
Copyright (c)2000 TogetherSoft LLC. Patents pending. All rights reserved.
----------------------------------------------------------------------------*/
package RelMgmt.PartyRole;
import java.util.Vector;
/** @stereotype role */
public class SupplierWithAccount extends RelMgmt.Party.PartyRole {
public Vector calcPayablesByAge() {
return new Vector();
}
public static Vector listPayablesByAge() {
return new Vector();
}
/**
* @clientCardinality 1
* @supplierCardinality 0..*
*/
private AccountingMgmt.Account.SupplierAccount lnkUnnamed;
}
|