Uses of Interface
jexer.backend.Screen
-
Packages that use Screen Package Description jexer Jexer - Java Text User Interface libraryjexer.backend The interface between TApplication and user-facing I/O.jexer.tackboard Pixel-based overlays. -
-
Uses of Screen in jexer
Methods in jexer that return Screen Modifier and Type Method Description Screen
TApplication. getScreen()
Get the Screen.Screen
TWidget. getScreen()
Get the Screen.Screen
TWindow. getScreen()
Get the Screen. -
Uses of Screen in jexer.backend
Classes in jexer.backend that implement Screen Modifier and Type Class Description class
ECMA48Terminal
This class reads keystrokes and mouse events and emits output to ANSI X3.64 / ECMA-48 type terminals e.g.class
HeadlessBackend
HeadlessBackendclass
LogicalScreen
A logical screen composed of a 2D array of Cells.class
MultiScreen
MultiScreen mirrors its I/O to several screens.class
SwingTerminal
This Screen backend reads keystrokes and mouse events and draws to either a Java Swing JFrame (potentially triple-buffered) or a JComponent.Fields in jexer.backend declared as Screen Modifier and Type Field Description protected Screen
GenericBackend. screen
The screen to draw on.Methods in jexer.backend that return Screen Modifier and Type Method Description Screen
TWindowBackend. getOtherScreen()
Getter for the other application's screen.Screen
Backend. getScreen()
Get a Screen, which displays the text cells to the user.Screen
GenericBackend. getScreen()
Getter for screen.Screen
HeadlessBackend. getScreen()
Get a Screen, which displays the text cells to the user.Screen
MultiBackend. getScreen()
Getter for screen.Screen
LogicalScreen. snapshot()
Obtain a snapshot copy of the screen.Screen
MultiScreen. snapshot()
Obtain a snapshot copy of the screen.Screen
Screen. snapshot()
Obtain a snapshot copy of the screen.Methods in jexer.backend with parameters of type Screen Modifier and Type Method Description void
MultiScreen. addScreen(Screen screen)
Add a screen to the list.void
MultiScreen. removeScreen(Screen screen)
Remove a screen from the list.Constructors in jexer.backend with parameters of type Screen Constructor Description MultiScreen(Screen screen)
Public constructor requires one screen. -
Uses of Screen in jexer.tackboard
Methods in jexer.tackboard with parameters of type Screen Modifier and Type Method Description void
Tackboard. draw(Screen screen, boolean transparent)
Draw everything to the screen.
-