Consumable.java 291 B

123456789101112
  1. // Copyright (c) 2000, 2001 Per M.A. Bothner and Brainfood Inc.
  2. // This is free software; for terms and warranty disclaimer see ./COPYING.
  3. package gnu.lists;
  4. /** An object that can send its contents to a Consumer. */
  5. public interface Consumable
  6. {
  7. public void consume(Consumer out);
  8. }