01: // Copyright (c) 2000, 2001 Per M.A. Bothner and Brainfood Inc.
02: // This is free software; for terms and warranty disclaimer see ./COPYING.
03:
04: package gnu.lists;
05:
06: /** An object that can send its contents to a Consumer. */
07:
08: public interface Consumable {
09: public void consume(Consumer out);
10: }
|