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