01: /*
02: * @(#)ConsoleUI.java 1.1 05/05/16
03: *
04: * Copyright (c) 2005 Sun Microsystems, Inc. All Rights Reserved.
05: *
06: * See the file "LICENSE.txt" for information on usage and redistribution
07: * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
08: */
09: package pnuts.tools;
10:
11: /*
12: * Abstract interface for Console UI
13: */
14: public interface ConsoleUI {
15:
16: /**
17: * Displays an output from the scripting engine
18: */
19: void append(String str);
20:
21: void close();
22: }
|