public interface com.googlecode.lanterna.screen.Screen extends com.googlecode.lanterna.input.InputProvider, com.googlecode.lanterna.graphics.Scrollable, java.io.Closeable
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: com.googlecode.lanterna.screen.Screen
  super_class: java.lang.Object
{
  public static final com.googlecode.lanterna.TextCharacter DEFAULT_CHARACTER;
    descriptor: Lcom/googlecode/lanterna/TextCharacter;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 48
            new com.googlecode.lanterna.TextCharacter
            dup
            bipush 32
            invokespecial com.googlecode.lanterna.TextCharacter.<init>:(C)V
            putstatic com.googlecode.lanterna.screen.Screen.DEFAULT_CHARACTER:Lcom/googlecode/lanterna/TextCharacter;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public abstract void startScreen();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void close();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void stopScreen();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void clear();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract com.googlecode.lanterna.TerminalPosition getCursorPosition();
    descriptor: ()Lcom/googlecode/lanterna/TerminalPosition;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void setCursorPosition(com.googlecode.lanterna.TerminalPosition);
    descriptor: (Lcom/googlecode/lanterna/TerminalPosition;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
          Name  Flags
      position  

  public abstract com.googlecode.lanterna.screen.TabBehaviour getTabBehaviour();
    descriptor: ()Lcom/googlecode/lanterna/screen/TabBehaviour;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void setTabBehaviour(com.googlecode.lanterna.screen.TabBehaviour);
    descriptor: (Lcom/googlecode/lanterna/screen/TabBehaviour;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
              Name  Flags
      tabBehaviour  

  public abstract com.googlecode.lanterna.TerminalSize getTerminalSize();
    descriptor: ()Lcom/googlecode/lanterna/TerminalSize;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void setCharacter(int, int, com.googlecode.lanterna.TextCharacter);
    descriptor: (IILcom/googlecode/lanterna/TextCharacter;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
                 Name  Flags
      column           
      row              
      screenCharacter  

  public abstract void setCharacter(com.googlecode.lanterna.TerminalPosition, com.googlecode.lanterna.TextCharacter);
    descriptor: (Lcom/googlecode/lanterna/TerminalPosition;Lcom/googlecode/lanterna/TextCharacter;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
                 Name  Flags
      position         
      screenCharacter  

  public abstract com.googlecode.lanterna.graphics.TextGraphics newTextGraphics();
    descriptor: ()Lcom/googlecode/lanterna/graphics/TextGraphics;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract com.googlecode.lanterna.TextCharacter getFrontCharacter(int, int);
    descriptor: (II)Lcom/googlecode/lanterna/TextCharacter;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
        Name  Flags
      column  
      row     

  public abstract com.googlecode.lanterna.TextCharacter getFrontCharacter(com.googlecode.lanterna.TerminalPosition);
    descriptor: (Lcom/googlecode/lanterna/TerminalPosition;)Lcom/googlecode/lanterna/TextCharacter;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
          Name  Flags
      position  

  public abstract com.googlecode.lanterna.TextCharacter getBackCharacter(int, int);
    descriptor: (II)Lcom/googlecode/lanterna/TextCharacter;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
        Name  Flags
      column  
      row     

  public abstract com.googlecode.lanterna.TextCharacter getBackCharacter(com.googlecode.lanterna.TerminalPosition);
    descriptor: (Lcom/googlecode/lanterna/TerminalPosition;)Lcom/googlecode/lanterna/TextCharacter;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
          Name  Flags
      position  

  public abstract void refresh();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void refresh(com.googlecode.lanterna.screen.Screen$RefreshType);
    descriptor: (Lcom/googlecode/lanterna/screen/Screen$RefreshType;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException
    MethodParameters:
             Name  Flags
      refreshType  

  public abstract com.googlecode.lanterna.TerminalSize doResizeIfNecessary();
    descriptor: ()Lcom/googlecode/lanterna/TerminalSize;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void scrollLines(int, int, int);
    descriptor: (III)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
           Name  Flags
      firstLine  
      lastLine   
      distance   
}
SourceFile: "Screen.java"
NestMembers:
  com.googlecode.lanterna.screen.Screen$RefreshType
InnerClasses:
  public final RefreshType = com.googlecode.lanterna.screen.Screen$RefreshType of com.googlecode.lanterna.screen.Screen