examples
Class Telnet

java.lang.Object
  extended byjava.awt.event.WindowAdapter
      extended byexamples.Telnet
All Implemented Interfaces:
java.util.EventListener, java.awt.event.WindowFocusListener, java.awt.event.WindowListener, java.awt.event.WindowStateListener

public class Telnet
extends java.awt.event.WindowAdapter

Open a telnet window and connect with the telnet protocol. SSH is not involved att all.

Usage: java -cp examples.jar examples.Telnet [server[:port]]


Constructor Summary
Telnet()
          Constructor which will cause the window to prompt the user for the server to connect to.
Telnet(java.lang.String remoteHost)
          Constructor which will cause a connection to the default port (23) on the given host.
Telnet(java.lang.String remoteHost, int remotePort)
          Constructor which will cause a connection to a specified port on the given host.
 
Method Summary
static void main(java.lang.String[] argv)
          Run the application
 void startMeUp()
          Create the terminal window and connect to the remote host.
 void windowClosing(java.awt.event.WindowEvent e)
          Handles window close events by closing the socket to the server (if any).
 
Methods inherited from class java.awt.event.WindowAdapter
windowActivated, windowClosed, windowDeactivated, windowDeiconified, windowGainedFocus, windowIconified, windowLostFocus, windowOpened, windowStateChanged
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Telnet

public Telnet()
Constructor which will cause the window to prompt the user for the server to connect to.


Telnet

public Telnet(java.lang.String remoteHost)
Constructor which will cause a connection to the default port (23) on the given host.


Telnet

public Telnet(java.lang.String remoteHost,
              int remotePort)
Constructor which will cause a connection to a specified port on the given host.

Method Detail

startMeUp

public void startMeUp()
Create the terminal window and connect to the remote host.


main

public static void main(java.lang.String[] argv)
Run the application


windowClosing

public void windowClosing(java.awt.event.WindowEvent e)
Handles window close events by closing the socket to the server (if any).