01: /**************************************************************************/
02: /* B O S S A */
03: /* A simple imperative object-oriented research language */
04: /* (c) Daniel Bonniot 1999 */
05: /* */
06: /* This program is free software; you can redistribute it and/or modify */
07: /* it under the terms of the GNU General Public License as published by */
08: /* the Free Software Foundation; either version 2 of the License, or */
09: /* (at your option) any later version. */
10: /* */
11: /**************************************************************************/package bossa.util;
12:
13: import bossa.util.*;
14:
15: /**
16: * Interface for objects that have a location in a source file
17: *
18: * @see Location
19: */
20: public interface Located {
21: /**
22: * @return the location of this entity.
23: */
24: public Location location();
25: }
|