// FILE. . . . . /home/hak/hlt/src/hlt/osfv1/base/IntegerConstant.java
// EDIT BY . . . Hassan Ait-Kaci
// ON MACHINE. . Hak-Laptop
// STARTED ON. . Mon Sep 02 16:47:11 2013

/**
 * This is the class for integer constants.
 *
 * @version     Last modified on Mon Sep 09 12:00:39 2013 by hak
 * @author      <a href="mailto:hak@acm.org">Hassan A&iuml;t-Kaci</a>
 * @copyright   &copy; <a href="http://www.hassan-ait-kaci.net/">by the author</a>
 */

package hlt.osf.base;

import hlt.osf.exec.Taxonomy;

public class IntegerConstant extends Constant
  {
    /**
     * Constructs a new <tt>IntegerConstant</tt> with the given value.
     */
    public IntegerConstant (int value)
    {
      _sort = Taxonomy.INTEGER;
      _value = value;
    }

    /**
     * The value if this constant.
     */
    private int _value;

    /**
     * Return the integer value of this <tt>IntegerConstant</tt>.
     */
    public int value ()
    {
      return _value;
    }

    /**
     * Returns <tt>true</tt> iff the specified object is an
     * <tt>IntegerConstant</tt> carrying the same value as this one.
     */
    public boolean equals (Object other)
    {
      if (!(other instanceof IntegerConstant))
	return false;

      return _value == ((IntegerConstant)other).value();
    }

    /**
     * Returns a <tt>String</tt> representation of this
     * <tt>IntegerConstant</tt>.
     */
    public String toString ()
    {
      return Integer.toString(_value);
    }

    public String displayForm ()
    {
      return toString();
    }

  }