public class com.googlecode.lanterna.graphics.DoublePrintingTextGraphics extends com.googlecode.lanterna.graphics.AbstractTextGraphics
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.googlecode.lanterna.graphics.DoublePrintingTextGraphics
  super_class: com.googlecode.lanterna.graphics.AbstractTextGraphics
{
  private final com.googlecode.lanterna.graphics.TextGraphics underlyingTextGraphics;
    descriptor: Lcom/googlecode/lanterna/graphics/TextGraphics;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(com.googlecode.lanterna.graphics.TextGraphics);
    descriptor: (Lcom/googlecode/lanterna/graphics/TextGraphics;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.googlecode.lanterna.graphics.DoublePrintingTextGraphics this
        start local 1 // com.googlecode.lanterna.graphics.TextGraphics underlyingTextGraphics
         0: .line 39
            aload 0 /* this */
            invokespecial com.googlecode.lanterna.graphics.AbstractTextGraphics.<init>:()V
         1: .line 40
            aload 0 /* this */
            aload 1 /* underlyingTextGraphics */
            putfield com.googlecode.lanterna.graphics.DoublePrintingTextGraphics.underlyingTextGraphics:Lcom/googlecode/lanterna/graphics/TextGraphics;
         2: .line 41
            return
        end local 1 // com.googlecode.lanterna.graphics.TextGraphics underlyingTextGraphics
        end local 0 // com.googlecode.lanterna.graphics.DoublePrintingTextGraphics this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    3     0                    this  Lcom/googlecode/lanterna/graphics/DoublePrintingTextGraphics;
            0    3     1  underlyingTextGraphics  Lcom/googlecode/lanterna/graphics/TextGraphics;
    MethodParameters:
                        Name  Flags
      underlyingTextGraphics  

  public com.googlecode.lanterna.graphics.TextGraphics setCharacter(int, int, com.googlecode.lanterna.TextCharacter);
    descriptor: (IILcom/googlecode/lanterna/TextCharacter;)Lcom/googlecode/lanterna/graphics/TextGraphics;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.googlecode.lanterna.graphics.DoublePrintingTextGraphics this
        start local 1 // int columnIndex
        start local 2 // int rowIndex
        start local 3 // com.googlecode.lanterna.TextCharacter textCharacter
         0: .line 45
            iload 1 /* columnIndex */
            iconst_2
            imul
            istore 1 /* columnIndex */
         1: .line 46
            aload 0 /* this */
            getfield com.googlecode.lanterna.graphics.DoublePrintingTextGraphics.underlyingTextGraphics:Lcom/googlecode/lanterna/graphics/TextGraphics;
            iload 1 /* columnIndex */
            iload 2 /* rowIndex */
            aload 3 /* textCharacter */
            invokeinterface com.googlecode.lanterna.graphics.TextGraphics.setCharacter:(IILcom/googlecode/lanterna/TextCharacter;)Lcom/googlecode/lanterna/graphics/TextGraphics;
            pop
         2: .line 47
            aload 0 /* this */
            getfield com.googlecode.lanterna.graphics.DoublePrintingTextGraphics.underlyingTextGraphics:Lcom/googlecode/lanterna/graphics/TextGraphics;
            iload 1 /* columnIndex */
            iconst_1
            iadd
            iload 2 /* rowIndex */
            aload 3 /* textCharacter */
            invokeinterface com.googlecode.lanterna.graphics.TextGraphics.setCharacter:(IILcom/googlecode/lanterna/TextCharacter;)Lcom/googlecode/lanterna/graphics/TextGraphics;
            pop
         3: .line 48
            aload 0 /* this */
            areturn
        end local 3 // com.googlecode.lanterna.TextCharacter textCharacter
        end local 2 // int rowIndex
        end local 1 // int columnIndex
        end local 0 // com.googlecode.lanterna.graphics.DoublePrintingTextGraphics this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lcom/googlecode/lanterna/graphics/DoublePrintingTextGraphics;
            0    4     1    columnIndex  I
            0    4     2       rowIndex  I
            0    4     3  textCharacter  Lcom/googlecode/lanterna/TextCharacter;
    MethodParameters:
               Name  Flags
      columnIndex    
      rowIndex       
      textCharacter  

  public com.googlecode.lanterna.TextCharacter getCharacter(int, int);
    descriptor: (II)Lcom/googlecode/lanterna/TextCharacter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.googlecode.lanterna.graphics.DoublePrintingTextGraphics this
        start local 1 // int columnIndex
        start local 2 // int rowIndex
         0: .line 53
            iload 1 /* columnIndex */
            iconst_2
            imul
            istore 1 /* columnIndex */
         1: .line 54
            aload 0 /* this */
            getfield com.googlecode.lanterna.graphics.DoublePrintingTextGraphics.underlyingTextGraphics:Lcom/googlecode/lanterna/graphics/TextGraphics;
            iload 1 /* columnIndex */
            iload 2 /* rowIndex */
            invokeinterface com.googlecode.lanterna.graphics.TextGraphics.getCharacter:(II)Lcom/googlecode/lanterna/TextCharacter;
            areturn
        end local 2 // int rowIndex
        end local 1 // int columnIndex
        end local 0 // com.googlecode.lanterna.graphics.DoublePrintingTextGraphics this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lcom/googlecode/lanterna/graphics/DoublePrintingTextGraphics;
            0    2     1  columnIndex  I
            0    2     2     rowIndex  I
    MethodParameters:
             Name  Flags
      columnIndex  
      rowIndex     

  public com.googlecode.lanterna.TerminalSize getSize();
    descriptor: ()Lcom/googlecode/lanterna/TerminalSize;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.googlecode.lanterna.graphics.DoublePrintingTextGraphics this
         0: .line 60
            aload 0 /* this */
            getfield com.googlecode.lanterna.graphics.DoublePrintingTextGraphics.underlyingTextGraphics:Lcom/googlecode/lanterna/graphics/TextGraphics;
            invokeinterface com.googlecode.lanterna.graphics.TextGraphics.getSize:()Lcom/googlecode/lanterna/TerminalSize;
            astore 1 /* size */
        start local 1 // com.googlecode.lanterna.TerminalSize size
         1: .line 61
            aload 1 /* size */
            aload 1 /* size */
            invokevirtual com.googlecode.lanterna.TerminalSize.getColumns:()I
            iconst_2
            idiv
            invokevirtual com.googlecode.lanterna.TerminalSize.withColumns:(I)Lcom/googlecode/lanterna/TerminalSize;
            areturn
        end local 1 // com.googlecode.lanterna.TerminalSize size
        end local 0 // com.googlecode.lanterna.graphics.DoublePrintingTextGraphics this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/googlecode/lanterna/graphics/DoublePrintingTextGraphics;
            1    2     1  size  Lcom/googlecode/lanterna/TerminalSize;
}
SourceFile: "DoublePrintingTextGraphics.java"