public class sun.net.TelnetOutputStream extends java.io.BufferedOutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.net.TelnetOutputStream
  super_class: java.io.BufferedOutputStream
{
  boolean stickyCRLF;
    descriptor: Z
    flags: (0x0000) 

  boolean seenCR;
    descriptor: Z
    flags: (0x0000) 

  public boolean binaryMode;
    descriptor: Z
    flags: (0x0001) ACC_PUBLIC

  public void <init>(java.io.OutputStream, boolean);
    descriptor: (Ljava/io/OutputStream;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // sun.net.TelnetOutputStream this
        start local 1 // java.io.OutputStream fd
        start local 2 // boolean binary
         0: .line 79
            aload 0 /* this */
            aload 1 /* fd */
            invokespecial java.io.BufferedOutputStream.<init>:(Ljava/io/OutputStream;)V
         1: .line 73
            aload 0 /* this */
            iconst_0
            putfield sun.net.TelnetOutputStream.stickyCRLF:Z
         2: .line 74
            aload 0 /* this */
            iconst_0
            putfield sun.net.TelnetOutputStream.seenCR:Z
         3: .line 76
            aload 0 /* this */
            iconst_0
            putfield sun.net.TelnetOutputStream.binaryMode:Z
         4: .line 80
            aload 0 /* this */
            iload 2 /* binary */
            putfield sun.net.TelnetOutputStream.binaryMode:Z
         5: .line 81
            return
        end local 2 // boolean binary
        end local 1 // java.io.OutputStream fd
        end local 0 // sun.net.TelnetOutputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lsun/net/TelnetOutputStream;
            0    6     1      fd  Ljava/io/OutputStream;
            0    6     2  binary  Z
    MethodParameters:
        Name  Flags
      fd      
      binary  

  public void setStickyCRLF(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.net.TelnetOutputStream this
        start local 1 // boolean on
         0: .line 90
            aload 0 /* this */
            iload 1 /* on */
            putfield sun.net.TelnetOutputStream.stickyCRLF:Z
         1: .line 91
            return
        end local 1 // boolean on
        end local 0 // sun.net.TelnetOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/net/TelnetOutputStream;
            0    2     1    on  Z
    MethodParameters:
      Name  Flags
      on    

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.net.TelnetOutputStream this
        start local 1 // int c
         0: .line 97
            aload 0 /* this */
            getfield sun.net.TelnetOutputStream.binaryMode:Z
            ifeq 3
         1: .line 98
            aload 0 /* this */
            iload 1 /* c */
            invokespecial java.io.BufferedOutputStream.write:(I)V
         2: .line 99
            return
         3: .line 102
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.TelnetOutputStream.seenCR:Z
            ifeq 10
         4: .line 103
            iload 1 /* c */
            bipush 10
            if_icmpeq 6
         5: .line 104
            aload 0 /* this */
            iconst_0
            invokespecial java.io.BufferedOutputStream.write:(I)V
         6: .line 105
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* c */
            invokespecial java.io.BufferedOutputStream.write:(I)V
         7: .line 106
            iload 1 /* c */
            bipush 13
            if_icmpeq 20
         8: .line 107
            aload 0 /* this */
            iconst_0
            putfield sun.net.TelnetOutputStream.seenCR:Z
         9: .line 108
            goto 20
        10: .line 109
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 10
            if_icmpne 14
        11: .line 110
            aload 0 /* this */
            bipush 13
            invokespecial java.io.BufferedOutputStream.write:(I)V
        12: .line 111
            aload 0 /* this */
            bipush 10
            invokespecial java.io.BufferedOutputStream.write:(I)V
        13: .line 112
            return
        14: .line 114
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 13
            if_icmpne 19
        15: .line 115
            aload 0 /* this */
            getfield sun.net.TelnetOutputStream.stickyCRLF:Z
            ifeq 17
        16: .line 116
            aload 0 /* this */
            iconst_1
            putfield sun.net.TelnetOutputStream.seenCR:Z
            goto 19
        17: .line 118
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 13
            invokespecial java.io.BufferedOutputStream.write:(I)V
        18: .line 119
            iconst_0
            istore 1 /* c */
        19: .line 122
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* c */
            invokespecial java.io.BufferedOutputStream.write:(I)V
        20: .line 124
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int c
        end local 0 // sun.net.TelnetOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   21     0  this  Lsun/net/TelnetOutputStream;
            0   21     1     c  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      c     

  public void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // sun.net.TelnetOutputStream this
        start local 1 // byte[] bytes
        start local 2 // int off
        start local 3 // int length
         0: .line 131
            aload 0 /* this */
            getfield sun.net.TelnetOutputStream.binaryMode:Z
            ifeq 4
         1: .line 132
            aload 0 /* this */
            aload 1 /* bytes */
            iload 2 /* off */
            iload 3 /* length */
            invokespecial java.io.BufferedOutputStream.write:([BII)V
         2: .line 133
            return
         3: .line 137
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* bytes */
            iload 2 /* off */
            iinc 2 /* off */ 1
            baload
            invokevirtual sun.net.TelnetOutputStream.write:(I)V
         4: .line 136
      StackMap locals:
      StackMap stack:
            iinc 3 /* length */ -1
            iload 3 /* length */
            ifge 3
         5: .line 139
            return
        end local 3 // int length
        end local 2 // int off
        end local 1 // byte[] bytes
        end local 0 // sun.net.TelnetOutputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lsun/net/TelnetOutputStream;
            0    6     1   bytes  [B
            0    6     2     off  I
            0    6     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      bytes   
      off     
      length  
}
SourceFile: "TelnetOutputStream.java"