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
-
Terminal()
-
-
getParameterInfo()
- Get the specific parameter info for the emulation.
-
getSize()
- Return the current size of the terminal in characters.
-
getTerminalType()
- Return actual terminal type identifier.
-
putChar(char)
- Put a character on the screen.
-
putString(String)
- Put a character on the screen.
Terminal
public Terminal()
getParameterInfo
public abstract String[][] getParameterInfo()
- Get the specific parameter info for the emulation.
- See Also:
- Applet
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
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
getSize
public abstract Dimension getSize()
- Return the current size of the terminal in characters.
getTerminalType
public abstract String getTerminalType()
- Return actual terminal type identifier.
All Packages Class Hierarchy This Package Previous Next Index