FileDocCategorySizeDatePackage
ChartOfAccounts.javaAPI DocExample728Thu Feb 17 20:00:58 GMT 2000AccountingMgmt.Account

ChartOfAccounts.java

/*----------------------------------------------------------------------------
Copyright (c)2000 TogetherSoft LLC. Patents pending. All rights reserved.
----------------------------------------------------------------------------*/

package AccountingMgmt.Account;

import java.util.Vector;

/** @stereotype thing */
public class ChartOfAccounts {
    public Vector compareOverallBudgetedVsActual() {
        return new Vector();
    }

    public Vector listAccountNumbersAndNames() {
        return new Vector();
    }

    private int scope;
    private int applicableInterval;

    /**
     * @clientCardinality 0..*
     * @supplierCardinality 0..*
     */
    private AccountDesc lnkUnnamed1;
}