package ilog.language.design.types;

/**
 * @version     Last modified on Tue Jun 11 11:01:17 2002 by hak
 * @author      <a href="mailto:hak@ilog.fr">Hassan A&iuml;t-Kaci</a>
 * @copyright   &copy; 2000-2002 <a href="http://www.ilog.fr/">ILOG, S.A.</a>
 */

/**
 * This interface is that of any object that can be the value of the
 * binding of a <a href="./Bindable.html"><tt>Bindable</tt></a> object.
 */

public interface Valuable
{
  /**
   * Returns the value of this valuable.
   */
  public Valuable getValue ();
}
