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: /**
14: * Interface of classes with a parametrized toString function.
15: *
16: * @author bonniot
17: */
18:
19: public interface Printable {
20: /** toString parameters */
21: static final int inConstraint = 0;
22: static final int detailed = 1;
23: static final int parsable = 2;
24:
25: public String toString(int param);
26: }
|