public interface com.googlecode.lanterna.graphics.TextImage extends com.googlecode.lanterna.graphics.Scrollable
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: com.googlecode.lanterna.graphics.TextImage
  super_class: java.lang.Object
{
  public abstract com.googlecode.lanterna.TerminalSize getSize();
    descriptor: ()Lcom/googlecode/lanterna/TerminalSize;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract com.googlecode.lanterna.TextCharacter getCharacterAt(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 getCharacterAt(int, int);
    descriptor: (II)Lcom/googlecode/lanterna/TextCharacter;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
        Name  Flags
      column  
      row     

  public abstract void setCharacterAt(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   
      character  

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

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

  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.graphics.TextImage resize(com.googlecode.lanterna.TerminalSize, com.googlecode.lanterna.TextCharacter);
    descriptor: (Lcom/googlecode/lanterna/TerminalSize;Lcom/googlecode/lanterna/TextCharacter;)Lcom/googlecode/lanterna/graphics/TextImage;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
         Name  Flags
      newSize  
      filler   

  public abstract void copyTo(com.googlecode.lanterna.graphics.TextImage);
    descriptor: (Lcom/googlecode/lanterna/graphics/TextImage;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
             Name  Flags
      destination  

  public abstract void copyTo(com.googlecode.lanterna.graphics.TextImage, int, int, int, int, int, int);
    descriptor: (Lcom/googlecode/lanterna/graphics/TextImage;IIIIII)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
                         Name  Flags
      destination              
      startRowIndex            
      rows                     
      startColumnIndex         
      columns                  
      destinationRowOffset     
      destinationColumnOffset  

  public abstract void scrollLines(int, int, int);
    descriptor: (III)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
           Name  Flags
      firstLine  
      lastLine   
      distance   
}
SourceFile: "TextImage.java"