//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\
// PLEASE DO NOT EDIT WITHOUT THE EXPLICIT CONSENT OF THE AUTHOR! \\
//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\
using System;
namespace Ilog.Language.Util
{
/**
* An interface to enable locating a (line,column) extent in text
* files.
*
* @version Last modified on Thu May 19 16:27:23 2005 by hak
* @author Hassan Aït-Kaci
* @copyright © 2000 ILOG, S.A.
*/
public interface Locatable
{
Location GetStart ();
Location GetEnd ();
Locatable SetStart (Location location);
Locatable SetEnd (Location location);
String LocationString ();
}
}