added applet mode, terminal window
[fleet.git] / src / de / mud / telnet / display / TerminalHost.java
1 package de.mud.telnet.display;
2 /* "In case you would like to use the packages as libraries please
3  *  apply the GNU Library General Public License as documented in the
4  *  file COPYING.LIB." (from Telnet/Documentation/index.html)
5  */
6 /*
7  * TerminalHost -- this interface defines the remote end of the connection
8  *                 from our Terminal to the Host (virtual).
9  * --
10  * $Id: TerminalHost.java,v 1.1.1.1 1997/03/05 13:35:16 leo Exp $
11  * $timestamp: Wed Mar  5 12:01:31 1997 by Matthias L. Jugel :$
12  *
13  * This file is part of "The Java Telnet Applet".
14  *
15  * This is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation; either version 2, or (at your option)
18  * any later version.
19  *
20  * "The Java Telnet Applet" is distributed in the hope that it will be 
21  * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  * 
25  * You should have received a copy of the GNU General Public License
26  * along with this software; see the file COPYING.  If not, write to the
27  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
28  * Boston, MA 02111-1307, USA.
29  */
30
31 /**
32  * TerminalHost is an interface for the remote (virtual) end of our connection
33  * to the host computer we are connected to.
34  * @version $Id: TerminalHost.java,v 1.1.1.1 1997/03/05 13:35:16 leo Exp $
35  * @author Matthias L Jugel, Marcus Meißner
36  */
37 public interface TerminalHost
38 {
39         /**
40          * Send a string to the host and return if it was received successfully.
41          * @param s the string to send
42          * @return True for successful receivement.
43          */
44         public boolean send(String s);
45 }
46