Class display.Terminal
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class display.Terminal

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Panel
                           |
                           +----display.Terminal

public class Terminal
extends Panel
Terminal is an abstract emulation class. It contains a character display.
Version:
$Id: Terminal.java,v 1.1.1.1 1997/03/05 13:35:16 leo Exp $
Author:
Matthias L. Jugel, Marcus Meißner

Constructor Index

 o Terminal()

Method Index

 o getParameterInfo()
Get the specific parameter info for the emulation.
 o getSize()
Return the current size of the terminal in characters.
 o getTerminalType()
Return actual terminal type identifier.
 o putChar(char)
Put a character on the screen.
 o putString(String)
Put a character on the screen.

Constructors

 o Terminal
  public Terminal()

Methods

 o getParameterInfo
  public abstract String[][] getParameterInfo()
Get the specific parameter info for the emulation.
See Also:
Applet
 o putChar
  public abstract void putChar(char c)
Put a character on the screen. The method has to see if it is a special character that needs to be handles special.
Parameters:
c - the character
See Also:
putString
 o putString
  public abstract void putString(String s)
Put a character on the screen. The method has to parse the string may handle special characters.
Parameters:
s - the string
See Also:
putString
 o getSize
  public abstract Dimension getSize()
Return the current size of the terminal in characters.
 o getTerminalType
  public abstract String getTerminalType()
Return actual terminal type identifier.

All Packages  Class Hierarchy  This Package  Previous  Next  Index