public class org.apache.commons.net.imap.IMAP extends org.apache.commons.net.SocketClient
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.net.imap.IMAP
  super_class: org.apache.commons.net.SocketClient
{
  public static final int DEFAULT_PORT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 143

  protected static final java.lang.String __DEFAULT_ENCODING;
    descriptor: Ljava/lang/String;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: "ISO-8859-1"

  private org.apache.commons.net.imap.IMAP$IMAPState __state;
    descriptor: Lorg/apache/commons/net/imap/IMAP$IMAPState;
    flags: (0x0002) ACC_PRIVATE

  protected java.io.BufferedWriter __writer;
    descriptor: Ljava/io/BufferedWriter;
    flags: (0x0004) ACC_PROTECTED

  protected java.io.BufferedReader _reader;
    descriptor: Ljava/io/BufferedReader;
    flags: (0x0004) ACC_PROTECTED

  private int _replyCode;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private final java.util.List<java.lang.String> _replyLines;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Ljava/lang/String;>;

  public static final org.apache.commons.net.imap.IMAP$IMAPChunkListener TRUE_CHUNK_LISTENER;
    descriptor: Lorg/apache/commons/net/imap/IMAP$IMAPChunkListener;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private volatile org.apache.commons.net.imap.IMAP$IMAPChunkListener __chunkListener;
    descriptor: Lorg/apache/commons/net/imap/IMAP$IMAPChunkListener;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private final char[] _initialID;
    descriptor: [C
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 103
            new org.apache.commons.net.imap.IMAP$1
            dup
            invokespecial org.apache.commons.net.imap.IMAP$1.<init>:()V
            putstatic org.apache.commons.net.imap.IMAP.TRUE_CHUNK_LISTENER:Lorg/apache/commons/net/imap/IMAP$IMAPChunkListener;
         1: .line 109
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.apache.commons.net.imap.IMAP this
         0: .line 118
            aload 0 /* this */
            invokespecial org.apache.commons.net.SocketClient.<init>:()V
         1: .line 112
            aload 0 /* this */
            iconst_4
            newarray 5
            dup
            iconst_0
            bipush 65
            castore
            dup
            iconst_1
            bipush 65
            castore
            dup
            iconst_2
            bipush 65
            castore
            dup
            iconst_3
            bipush 65
            castore
            putfield org.apache.commons.net.imap.IMAP._initialID:[C
         2: .line 120
            aload 0 /* this */
            sipush 143
            invokevirtual org.apache.commons.net.imap.IMAP.setDefaultPort:(I)V
         3: .line 121
            aload 0 /* this */
            getstatic org.apache.commons.net.imap.IMAP$IMAPState.DISCONNECTED_STATE:Lorg/apache/commons/net/imap/IMAP$IMAPState;
            putfield org.apache.commons.net.imap.IMAP.__state:Lorg/apache/commons/net/imap/IMAP$IMAPState;
         4: .line 122
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.imap.IMAP._reader:Ljava/io/BufferedReader;
         5: .line 123
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.imap.IMAP.__writer:Ljava/io/BufferedWriter;
         6: .line 124
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.commons.net.imap.IMAP._replyLines:Ljava/util/List;
         7: .line 125
            aload 0 /* this */
            invokevirtual org.apache.commons.net.imap.IMAP.createCommandSupport:()V
         8: .line 126
            return
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/apache/commons/net/imap/IMAP;

  private void __getReply();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.net.imap.IMAP this
         0: .line 135
            aload 0 /* this */
            iconst_1
            invokevirtual org.apache.commons.net.imap.IMAP.__getReply:(Z)V
         1: .line 136
            return
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/net/imap/IMAP;
    Exceptions:
      throws java.io.IOException

  private void __getReply(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.apache.commons.net.imap.IMAP this
        start local 1 // boolean wantTag
         0: .line 147
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._replyLines:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         1: .line 148
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._reader:Ljava/io/BufferedReader;
            invokevirtual java.io.BufferedReader.readLine:()Ljava/lang/String;
            astore 2 /* line */
        start local 2 // java.lang.String line
         2: .line 150
            aload 2 /* line */
            ifnonnull 4
         3: .line 151
            new java.io.EOFException
            dup
            ldc "Connection closed without indication."
            invokespecial java.io.EOFException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 154
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._replyLines:Ljava/util/List;
            aload 2 /* line */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         5: .line 156
            iload 1 /* wantTag */
            ifeq 32
         6: .line 157
            goto 29
         7: .line 158
      StackMap locals:
      StackMap stack:
            aload 2 /* line */
            invokestatic org.apache.commons.net.imap.IMAPReply.literalCount:(Ljava/lang/String;)I
            istore 3 /* literalCount */
        start local 3 // int literalCount
         8: .line 159
            iload 3 /* literalCount */
            iflt 9
            iconst_1
            goto 10
      StackMap locals: int
      StackMap stack:
         9: iconst_0
      StackMap locals:
      StackMap stack: int
        10: istore 4 /* isMultiLine */
        start local 4 // boolean isMultiLine
        11: .line 160
            goto 17
        12: .line 161
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._reader:Ljava/io/BufferedReader;
            invokevirtual java.io.BufferedReader.readLine:()Ljava/lang/String;
            astore 2 /* line */
        13: .line 162
            aload 2 /* line */
            ifnonnull 15
        14: .line 163
            new java.io.EOFException
            dup
            ldc "Connection closed without indication."
            invokespecial java.io.EOFException.<init>:(Ljava/lang/String;)V
            athrow
        15: .line 165
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._replyLines:Ljava/util/List;
            aload 2 /* line */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        16: .line 166
            iload 3 /* literalCount */
            aload 2 /* line */
            invokevirtual java.lang.String.length:()I
            iconst_2
            iadd
            isub
            istore 3 /* literalCount */
        17: .line 160
      StackMap locals:
      StackMap stack:
            iload 3 /* literalCount */
            ifge 12
        18: .line 168
            iload 4 /* isMultiLine */
            ifeq 25
        19: .line 169
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP.__chunkListener:Lorg/apache/commons/net/imap/IMAP$IMAPChunkListener;
            astore 5 /* il */
        start local 5 // org.apache.commons.net.imap.IMAP$IMAPChunkListener il
        20: .line 170
            aload 5 /* il */
            ifnull 25
        21: .line 171
            aload 5 /* il */
            aload 0 /* this */
            invokeinterface org.apache.commons.net.imap.IMAP$IMAPChunkListener.chunkReceived:(Lorg/apache/commons/net/imap/IMAP;)Z
            istore 6 /* clear */
        start local 6 // boolean clear
        22: .line 172
            iload 6 /* clear */
            ifeq 25
        23: .line 173
            aload 0 /* this */
            iconst_3
            aload 0 /* this */
            invokevirtual org.apache.commons.net.imap.IMAP.getReplyString:()Ljava/lang/String;
            invokevirtual org.apache.commons.net.imap.IMAP.fireReplyReceived:(ILjava/lang/String;)V
        24: .line 174
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._replyLines:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
        end local 6 // boolean clear
        end local 5 // org.apache.commons.net.imap.IMAP$IMAPChunkListener il
        25: .line 178
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._reader:Ljava/io/BufferedReader;
            invokevirtual java.io.BufferedReader.readLine:()Ljava/lang/String;
            astore 2 /* line */
        26: .line 179
            aload 2 /* line */
            ifnonnull 28
        27: .line 180
            new java.io.EOFException
            dup
            ldc "Connection closed without indication."
            invokespecial java.io.EOFException.<init>:(Ljava/lang/String;)V
            athrow
        28: .line 182
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._replyLines:Ljava/util/List;
            aload 2 /* line */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // boolean isMultiLine
        end local 3 // int literalCount
        29: .line 157
      StackMap locals:
      StackMap stack:
            aload 2 /* line */
            invokestatic org.apache.commons.net.imap.IMAPReply.isUntagged:(Ljava/lang/String;)Z
            ifne 7
        30: .line 185
            aload 0 /* this */
            aload 2 /* line */
            invokestatic org.apache.commons.net.imap.IMAPReply.getReplyCode:(Ljava/lang/String;)I
            putfield org.apache.commons.net.imap.IMAP._replyCode:I
        31: .line 186
            goto 33
        32: .line 187
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* line */
            invokestatic org.apache.commons.net.imap.IMAPReply.getUntaggedReplyCode:(Ljava/lang/String;)I
            putfield org.apache.commons.net.imap.IMAP._replyCode:I
        33: .line 190
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._replyCode:I
            aload 0 /* this */
            invokevirtual org.apache.commons.net.imap.IMAP.getReplyString:()Ljava/lang/String;
            invokevirtual org.apache.commons.net.imap.IMAP.fireReplyReceived:(ILjava/lang/String;)V
        34: .line 191
            return
        end local 2 // java.lang.String line
        end local 1 // boolean wantTag
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   35     0          this  Lorg/apache/commons/net/imap/IMAP;
            0   35     1       wantTag  Z
            2   35     2          line  Ljava/lang/String;
            8   29     3  literalCount  I
           11   29     4   isMultiLine  Z
           20   25     5            il  Lorg/apache/commons/net/imap/IMAP$IMAPChunkListener;
           22   25     6         clear  Z
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      wantTag  

  protected void fireReplyReceived(int, java.lang.String);
    descriptor: (ILjava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.net.imap.IMAP this
        start local 1 // int replyCode
        start local 2 // java.lang.String ignored
         0: .line 204
            aload 0 /* this */
            invokevirtual org.apache.commons.net.imap.IMAP.getCommandSupport:()Lorg/apache/commons/net/ProtocolCommandSupport;
            invokevirtual org.apache.commons.net.ProtocolCommandSupport.getListenerCount:()I
            ifle 2
         1: .line 205
            aload 0 /* this */
            invokevirtual org.apache.commons.net.imap.IMAP.getCommandSupport:()Lorg/apache/commons/net/ProtocolCommandSupport;
            iload 1 /* replyCode */
            aload 0 /* this */
            invokevirtual org.apache.commons.net.imap.IMAP.getReplyString:()Ljava/lang/String;
            invokevirtual org.apache.commons.net.ProtocolCommandSupport.fireReplyReceived:(ILjava/lang/String;)V
         2: .line 207
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.String ignored
        end local 1 // int replyCode
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/apache/commons/net/imap/IMAP;
            0    3     1  replyCode  I
            0    3     2    ignored  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      replyCode  
      ignored    

  protected void _connectAction_();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=2, args_size=1
        start local 0 // org.apache.commons.net.imap.IMAP this
         0: .line 216
            aload 0 /* this */
            invokespecial org.apache.commons.net.SocketClient._connectAction_:()V
         1: .line 217
            aload 0 /* this */
         2: .line 218
            new org.apache.commons.net.io.CRLFLineReader
            dup
            new java.io.InputStreamReader
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._input_:Ljava/io/InputStream;
         3: .line 219
            ldc "ISO-8859-1"
            invokespecial java.io.InputStreamReader.<init>:(Ljava/io/InputStream;Ljava/lang/String;)V
         4: .line 218
            invokespecial org.apache.commons.net.io.CRLFLineReader.<init>:(Ljava/io/Reader;)V
         5: .line 217
            putfield org.apache.commons.net.imap.IMAP._reader:Ljava/io/BufferedReader;
         6: .line 220
            aload 0 /* this */
         7: .line 221
            new java.io.BufferedWriter
            dup
            new java.io.OutputStreamWriter
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._output_:Ljava/io/OutputStream;
         8: .line 222
            ldc "ISO-8859-1"
            invokespecial java.io.OutputStreamWriter.<init>:(Ljava/io/OutputStream;Ljava/lang/String;)V
         9: .line 221
            invokespecial java.io.BufferedWriter.<init>:(Ljava/io/Writer;)V
        10: .line 220
            putfield org.apache.commons.net.imap.IMAP.__writer:Ljava/io/BufferedWriter;
        11: .line 223
            aload 0 /* this */
            invokevirtual org.apache.commons.net.imap.IMAP.getSoTimeout:()I
            istore 1 /* tmo */
        start local 1 // int tmo
        12: .line 224
            iload 1 /* tmo */
            ifgt 14
        13: .line 225
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP.connectTimeout:I
            invokevirtual org.apache.commons.net.imap.IMAP.setSoTimeout:(I)V
        14: .line 227
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual org.apache.commons.net.imap.IMAP.__getReply:(Z)V
        15: .line 228
            iload 1 /* tmo */
            ifgt 17
        16: .line 229
            aload 0 /* this */
            iload 1 /* tmo */
            invokevirtual org.apache.commons.net.imap.IMAP.setSoTimeout:(I)V
        17: .line 231
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.apache.commons.net.imap.IMAP$IMAPState.NOT_AUTH_STATE:Lorg/apache/commons/net/imap/IMAP$IMAPState;
            invokevirtual org.apache.commons.net.imap.IMAP.setState:(Lorg/apache/commons/net/imap/IMAP$IMAPState;)V
        18: .line 232
            return
        end local 1 // int tmo
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0  this  Lorg/apache/commons/net/imap/IMAP;
           12   19     1   tmo  I
    Exceptions:
      throws java.io.IOException

  protected void setState(org.apache.commons.net.imap.IMAP$IMAPState);
    descriptor: (Lorg/apache/commons/net/imap/IMAP$IMAPState;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.net.imap.IMAP this
        start local 1 // org.apache.commons.net.imap.IMAP$IMAPState state
         0: .line 242
            aload 0 /* this */
            aload 1 /* state */
            putfield org.apache.commons.net.imap.IMAP.__state:Lorg/apache/commons/net/imap/IMAP$IMAPState;
         1: .line 243
            return
        end local 1 // org.apache.commons.net.imap.IMAP$IMAPState state
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/apache/commons/net/imap/IMAP;
            0    2     1  state  Lorg/apache/commons/net/imap/IMAP$IMAPState;
    MethodParameters:
       Name  Flags
      state  

  public org.apache.commons.net.imap.IMAP$IMAPState getState();
    descriptor: ()Lorg/apache/commons/net/imap/IMAP$IMAPState;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.net.imap.IMAP this
         0: .line 253
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP.__state:Lorg/apache/commons/net/imap/IMAP$IMAPState;
            areturn
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/imap/IMAP;

  public void disconnect();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.net.imap.IMAP this
         0: .line 267
            aload 0 /* this */
            invokespecial org.apache.commons.net.SocketClient.disconnect:()V
         1: .line 268
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.imap.IMAP._reader:Ljava/io/BufferedReader;
         2: .line 269
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.imap.IMAP.__writer:Ljava/io/BufferedWriter;
         3: .line 270
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._replyLines:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         4: .line 271
            aload 0 /* this */
            getstatic org.apache.commons.net.imap.IMAP$IMAPState.DISCONNECTED_STATE:Lorg/apache/commons/net/imap/IMAP$IMAPState;
            invokevirtual org.apache.commons.net.imap.IMAP.setState:(Lorg/apache/commons/net/imap/IMAP$IMAPState;)V
         5: .line 272
            return
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/net/imap/IMAP;
    Exceptions:
      throws java.io.IOException

  private int sendCommandWithID(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // org.apache.commons.net.imap.IMAP this
        start local 1 // java.lang.String commandID
        start local 2 // java.lang.String command
        start local 3 // java.lang.String args
         0: .line 285
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 4 /* __commandBuffer */
        start local 4 // java.lang.StringBuilder __commandBuffer
         1: .line 286
            aload 1 /* commandID */
            ifnull 4
         2: .line 288
            aload 4 /* __commandBuffer */
            aload 1 /* commandID */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         3: .line 289
            aload 4 /* __commandBuffer */
            bipush 32
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         4: .line 291
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 4 /* __commandBuffer */
            aload 2 /* command */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         5: .line 293
            aload 3 /* args */
            ifnull 8
         6: .line 295
            aload 4 /* __commandBuffer */
            bipush 32
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         7: .line 296
            aload 4 /* __commandBuffer */
            aload 3 /* args */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 298
      StackMap locals:
      StackMap stack:
            aload 4 /* __commandBuffer */
            ldc "\r\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         9: .line 300
            aload 4 /* __commandBuffer */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 5 /* message */
        start local 5 // java.lang.String message
        10: .line 301
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP.__writer:Ljava/io/BufferedWriter;
            aload 5 /* message */
            invokevirtual java.io.BufferedWriter.write:(Ljava/lang/String;)V
        11: .line 302
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP.__writer:Ljava/io/BufferedWriter;
            invokevirtual java.io.BufferedWriter.flush:()V
        12: .line 304
            aload 0 /* this */
            aload 2 /* command */
            aload 5 /* message */
            invokevirtual org.apache.commons.net.imap.IMAP.fireCommandSent:(Ljava/lang/String;Ljava/lang/String;)V
        13: .line 306
            aload 0 /* this */
            invokevirtual org.apache.commons.net.imap.IMAP.__getReply:()V
        14: .line 307
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._replyCode:I
            ireturn
        end local 5 // java.lang.String message
        end local 4 // java.lang.StringBuilder __commandBuffer
        end local 3 // java.lang.String args
        end local 2 // java.lang.String command
        end local 1 // java.lang.String commandID
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   15     0             this  Lorg/apache/commons/net/imap/IMAP;
            0   15     1        commandID  Ljava/lang/String;
            0   15     2          command  Ljava/lang/String;
            0   15     3             args  Ljava/lang/String;
            1   15     4  __commandBuffer  Ljava/lang/StringBuilder;
           10   15     5          message  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      commandID  
      command    
      args       

  public int sendCommand(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.commons.net.imap.IMAP this
        start local 1 // java.lang.String command
        start local 2 // java.lang.String args
         0: .line 320
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.apache.commons.net.imap.IMAP.generateCommandID:()Ljava/lang/String;
            aload 1 /* command */
            aload 2 /* args */
            invokevirtual org.apache.commons.net.imap.IMAP.sendCommandWithID:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)I
            ireturn
        end local 2 // java.lang.String args
        end local 1 // java.lang.String command
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/net/imap/IMAP;
            0    1     1  command  Ljava/lang/String;
            0    1     2     args  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      command  
      args     

  public int sendCommand(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.imap.IMAP this
        start local 1 // java.lang.String command
         0: .line 333
            aload 0 /* this */
            aload 1 /* command */
            aconst_null
            invokevirtual org.apache.commons.net.imap.IMAP.sendCommand:(Ljava/lang/String;Ljava/lang/String;)I
            ireturn
        end local 1 // java.lang.String command
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/net/imap/IMAP;
            0    1     1  command  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      command  

  public int sendCommand(org.apache.commons.net.imap.IMAPCommand, java.lang.String);
    descriptor: (Lorg/apache/commons/net/imap/IMAPCommand;Ljava/lang/String;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.net.imap.IMAP this
        start local 1 // org.apache.commons.net.imap.IMAPCommand command
        start local 2 // java.lang.String args
         0: .line 347
            aload 0 /* this */
            aload 1 /* command */
            invokevirtual org.apache.commons.net.imap.IMAPCommand.getIMAPCommand:()Ljava/lang/String;
            aload 2 /* args */
            invokevirtual org.apache.commons.net.imap.IMAP.sendCommand:(Ljava/lang/String;Ljava/lang/String;)I
            ireturn
        end local 2 // java.lang.String args
        end local 1 // org.apache.commons.net.imap.IMAPCommand command
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/net/imap/IMAP;
            0    1     1  command  Lorg/apache/commons/net/imap/IMAPCommand;
            0    1     2     args  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      command  
      args     

  public boolean doCommand(org.apache.commons.net.imap.IMAPCommand, java.lang.String);
    descriptor: (Lorg/apache/commons/net/imap/IMAPCommand;Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.net.imap.IMAP this
        start local 1 // org.apache.commons.net.imap.IMAPCommand command
        start local 2 // java.lang.String args
         0: .line 361
            aload 0 /* this */
            aload 1 /* command */
            aload 2 /* args */
            invokevirtual org.apache.commons.net.imap.IMAP.sendCommand:(Lorg/apache/commons/net/imap/IMAPCommand;Ljava/lang/String;)I
            invokestatic org.apache.commons.net.imap.IMAPReply.isSuccess:(I)Z
            ireturn
        end local 2 // java.lang.String args
        end local 1 // org.apache.commons.net.imap.IMAPCommand command
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/net/imap/IMAP;
            0    1     1  command  Lorg/apache/commons/net/imap/IMAPCommand;
            0    1     2     args  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      command  
      args     

  public int sendCommand(org.apache.commons.net.imap.IMAPCommand);
    descriptor: (Lorg/apache/commons/net/imap/IMAPCommand;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.imap.IMAP this
        start local 1 // org.apache.commons.net.imap.IMAPCommand command
         0: .line 375
            aload 0 /* this */
            aload 1 /* command */
            aconst_null
            invokevirtual org.apache.commons.net.imap.IMAP.sendCommand:(Lorg/apache/commons/net/imap/IMAPCommand;Ljava/lang/String;)I
            ireturn
        end local 1 // org.apache.commons.net.imap.IMAPCommand command
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/net/imap/IMAP;
            0    1     1  command  Lorg/apache/commons/net/imap/IMAPCommand;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      command  

  public boolean doCommand(org.apache.commons.net.imap.IMAPCommand);
    descriptor: (Lorg/apache/commons/net/imap/IMAPCommand;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.net.imap.IMAP this
        start local 1 // org.apache.commons.net.imap.IMAPCommand command
         0: .line 388
            aload 0 /* this */
            aload 1 /* command */
            invokevirtual org.apache.commons.net.imap.IMAP.sendCommand:(Lorg/apache/commons/net/imap/IMAPCommand;)I
            invokestatic org.apache.commons.net.imap.IMAPReply.isSuccess:(I)Z
            ireturn
        end local 1 // org.apache.commons.net.imap.IMAPCommand command
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/net/imap/IMAP;
            0    1     1  command  Lorg/apache/commons/net/imap/IMAPCommand;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      command  

  public int sendData(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.net.imap.IMAP this
        start local 1 // java.lang.String command
         0: .line 400
            aload 0 /* this */
            aconst_null
            aload 1 /* command */
            aconst_null
            invokevirtual org.apache.commons.net.imap.IMAP.sendCommandWithID:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)I
            ireturn
        end local 1 // java.lang.String command
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/net/imap/IMAP;
            0    1     1  command  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      command  

  public java.lang.String[] getReplyStrings();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.net.imap.IMAP this
         0: .line 410
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._replyLines:Ljava/util/List;
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._replyLines:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            anewarray java.lang.String
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast java.lang.String[]
            areturn
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/imap/IMAP;

  public java.lang.String getReplyString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.apache.commons.net.imap.IMAP this
         0: .line 422
            new java.lang.StringBuilder
            dup
            sipush 256
            invokespecial java.lang.StringBuilder.<init>:(I)V
            astore 1 /* buffer */
        start local 1 // java.lang.StringBuilder buffer
         1: .line 423
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._replyLines:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: org.apache.commons.net.imap.IMAP java.lang.StringBuilder top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 2 /* s */
        start local 2 // java.lang.String s
         3: .line 425
            aload 1 /* buffer */
            aload 2 /* s */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         4: .line 426
            aload 1 /* buffer */
            ldc "\r\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 2 // java.lang.String s
         5: .line 423
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 429
            aload 1 /* buffer */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder buffer
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/apache/commons/net/imap/IMAP;
            1    7     1  buffer  Ljava/lang/StringBuilder;
            3    5     2       s  Ljava/lang/String;

  public void setChunkListener(org.apache.commons.net.imap.IMAP$IMAPChunkListener);
    descriptor: (Lorg/apache/commons/net/imap/IMAP$IMAPChunkListener;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.net.imap.IMAP this
        start local 1 // org.apache.commons.net.imap.IMAP$IMAPChunkListener listener
         0: .line 444
            aload 0 /* this */
            aload 1 /* listener */
            putfield org.apache.commons.net.imap.IMAP.__chunkListener:Lorg/apache/commons/net/imap/IMAP$IMAPChunkListener;
         1: .line 445
            return
        end local 1 // org.apache.commons.net.imap.IMAP$IMAPChunkListener listener
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/commons/net/imap/IMAP;
            0    2     1  listener  Lorg/apache/commons/net/imap/IMAP$IMAPChunkListener;
    MethodParameters:
          Name  Flags
      listener  

  protected java.lang.String generateCommandID();
    descriptor: ()Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.apache.commons.net.imap.IMAP this
         0: .line 453
            new java.lang.String
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._initialID:[C
            invokespecial java.lang.String.<init>:([C)V
            astore 1 /* res */
        start local 1 // java.lang.String res
         1: .line 455
            iconst_1
            istore 2 /* carry */
        start local 2 // boolean carry
         2: .line 456
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._initialID:[C
            arraylength
            iconst_1
            isub
            istore 3 /* i */
        start local 3 // int i
         3: goto 10
         4: .line 458
      StackMap locals: java.lang.String int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._initialID:[C
            iload 3 /* i */
            caload
            bipush 90
            if_icmpne 7
         5: .line 460
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._initialID:[C
            iload 3 /* i */
            bipush 65
            castore
         6: .line 461
            goto 9
         7: .line 464
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.net.imap.IMAP._initialID:[C
            iload 3 /* i */
            dup2
            caload
            iconst_1
            iadd
            i2c
            castore
         8: .line 465
            iconst_0
            istore 2 /* carry */
         9: .line 456
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ -1
      StackMap locals:
      StackMap stack:
        10: iload 2 /* carry */
            ifeq 11
            iload 3 /* i */
            ifge 4
        end local 3 // int i
        11: .line 468
      StackMap locals:
      StackMap stack:
            aload 1 /* res */
            areturn
        end local 2 // boolean carry
        end local 1 // java.lang.String res
        end local 0 // org.apache.commons.net.imap.IMAP this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0   this  Lorg/apache/commons/net/imap/IMAP;
            1   12     1    res  Ljava/lang/String;
            2   12     2  carry  Z
            3   11     3      i  I
}
SourceFile: "IMAP.java"
NestMembers:
  org.apache.commons.net.imap.IMAP$1  org.apache.commons.net.imap.IMAP$IMAPChunkListener  org.apache.commons.net.imap.IMAP$IMAPState
InnerClasses:
  org.apache.commons.net.imap.IMAP$1
  public abstract IMAPChunkListener = org.apache.commons.net.imap.IMAP$IMAPChunkListener of org.apache.commons.net.imap.IMAP
  public final IMAPState = org.apache.commons.net.imap.IMAP$IMAPState of org.apache.commons.net.imap.IMAP