FileDocCategorySizeDatePackage
GLAccount.javaAPI DocExample662Thu Feb 17 20:00:58 GMT 2000AccountingMgmt.Account

GLAccount.java

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

package AccountingMgmt.Account;

import java.util.Vector;

/** @stereotype thing */
public class GLAccount extends Account {
    public Vector listEntries() {
        return new Vector();
    }

    /**
     *@shapeType AggregationLink
     *    @associates <b>GLAccount</b>
     * @supplierCardinality 0..*
     * @clientCardinality 0..1
     * @supplierRole sub
     */
    private Vector lnkUnnamed1;
}