01: package gnu.text;
02:
03: import gnu.lists.Consumer;
04:
05: public interface Printable {
06: // Tempting to do: void print (Appendable out);
07: // in the JAVA5 case. However, then we have to deal
08: // with the complication that the append methods
09: // in Appendable are specified as 'throws IOException'.
10: // Sigh. Maybe later.
11: void print(Consumer out);
12: }
|