/*********************************************************************
 * Author: B. Alex Bridges                                           *
 * Login ID: brid0129                                                *
 * Class: CPSC-221, Winter 1999                                      *
 * Project: Programming Assignment 2                                 *
 * Description: This program generates a cross reference for a Java  *
 *              program file.  It uses a closed hash table with      *
 *              double hashing.                                      *
 * Contents: Setup of Reference object.                              *
 *********************************************************************/

/* IMPORTS */
// => NONE


class Reference
{
  /* CONSTANTS */
  final static boolean b_debug = false; // CONTROLS EXTRA DEBUG OUTPUT

  /* OBJECT VARIABLES */
  String str_value; // REFERENCE'S VALUE
  int int_line;     // REFERENCE'S LINE NUMBER
  int int_occurs;   // REFERENCE'S NUMBER OF OCCURENCES

  public Reference()
  {
     str_value  = new String("null");
     int_line   = -1;
     int_occurs =  0;
  } // constructor Reference
} // class Reference

