KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gnu > lists > Consumable


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

4 package gnu.lists;
5
6 /** An object that can send its contents to a Consumer. */
7
8 public interface Consumable
9 {
10   public void consume(Consumer out);
11 }
12
Popular Tags