Exemplo n.º 1
0
 /**
  * Creates a new Screen on top of a supplied terminal, will query the terminal for its size. The
  * screen is initially blank.
  *
  * @param terminal
  * @throws LanternaException
  */
 public Screen(Terminal terminal) {
   this(terminal, terminal.queryTerminalSize());
 }