class Entry { /** * allocation code. */ protected int alloc; /** * general ledger account number. */ protected int gl; /** * up to five character code for the account. */ protected String shortName; /** * up to 30 character description for the account. */ protected String longName; /** * what kind of receipt do you get, T=income tax B=business N=none */ protected char receipt; } // end class Entry