class sun.nio.ch.ServerSocketAdaptor extends java.net.ServerSocket
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.nio.ch.ServerSocketAdaptor
  super_class: java.net.ServerSocket
{
  private final sun.nio.ch.ServerSocketChannelImpl ssc;
    descriptor: Lsun/nio/ch/ServerSocketChannelImpl;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private volatile int timeout;
    descriptor: I
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  static java.net.ServerSocket create(sun.nio.ch.ServerSocketChannelImpl);
    descriptor: (Lsun/nio/ch/ServerSocketChannelImpl;)Ljava/net/ServerSocket;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // sun.nio.ch.ServerSocketChannelImpl ssc
         0: .line 65
            aload 0 /* ssc */
            invokedynamic run(Lsun/nio/ch/ServerSocketChannelImpl;)Ljava/security/PrivilegedExceptionAction;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()Ljava/lang/Object;
                  sun/nio/ch/ServerSocketAdaptor.lambda$0(Lsun/nio/ch/ServerSocketChannelImpl;)Ljava/net/ServerSocket; (6)
                  ()Ljava/net/ServerSocket;
            astore 1 /* pa */
        start local 1 // java.security.PrivilegedExceptionAction pa
         1: .line 67
            aload 1 /* pa */
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedExceptionAction;)Ljava/lang/Object;
            checkcast java.net.ServerSocket
         2: areturn
         3: .line 68
      StackMap locals: sun.nio.ch.ServerSocketChannelImpl java.security.PrivilegedExceptionAction
      StackMap stack: java.security.PrivilegedActionException
            astore 2 /* pae */
        start local 2 // java.security.PrivilegedActionException pae
         4: .line 69
            new java.lang.InternalError
            dup
            ldc "Should not reach here"
            aload 2 /* pae */
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.security.PrivilegedActionException pae
        end local 1 // java.security.PrivilegedExceptionAction pa
        end local 0 // sun.nio.ch.ServerSocketChannelImpl ssc
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0   ssc  Lsun/nio/ch/ServerSocketChannelImpl;
            1    5     1    pa  Ljava/security/PrivilegedExceptionAction<Ljava/net/ServerSocket;>;
            4    5     2   pae  Ljava/security/PrivilegedActionException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.security.PrivilegedActionException
    MethodParameters:
      Name  Flags
      ssc   

  private void <init>(sun.nio.ch.ServerSocketChannelImpl);
    descriptor: (Lsun/nio/ch/ServerSocketChannelImpl;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
        start local 1 // sun.nio.ch.ServerSocketChannelImpl ssc
         0: .line 74
            aload 0 /* this */
            invokestatic sun.nio.ch.DummySocketImpl.create:()Ljava/net/SocketImpl;
            invokespecial java.net.ServerSocket.<init>:(Ljava/net/SocketImpl;)V
         1: .line 75
            aload 0 /* this */
            aload 1 /* ssc */
            putfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
         2: .line 76
            return
        end local 1 // sun.nio.ch.ServerSocketChannelImpl ssc
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/nio/ch/ServerSocketAdaptor;
            0    3     1   ssc  Lsun/nio/ch/ServerSocketChannelImpl;
    MethodParameters:
      Name  Flags
      ssc   

  public void bind(java.net.SocketAddress);
    descriptor: (Ljava/net/SocketAddress;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
        start local 1 // java.net.SocketAddress local
         0: .line 80
            aload 0 /* this */
            aload 1 /* local */
            bipush 50
            invokevirtual sun.nio.ch.ServerSocketAdaptor.bind:(Ljava/net/SocketAddress;I)V
         1: .line 81
            return
        end local 1 // java.net.SocketAddress local
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lsun/nio/ch/ServerSocketAdaptor;
            0    2     1  local  Ljava/net/SocketAddress;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      local  

  public void bind(java.net.SocketAddress, int);
    descriptor: (Ljava/net/SocketAddress;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
        start local 1 // java.net.SocketAddress local
        start local 2 // int backlog
         0: .line 85
            aload 1 /* local */
            ifnonnull 2
         1: .line 86
            new java.net.InetSocketAddress
            dup
            iconst_0
            invokespecial java.net.InetSocketAddress.<init>:(I)V
            astore 1 /* local */
         2: .line 88
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            aload 1 /* local */
            iload 2 /* backlog */
            invokevirtual sun.nio.ch.ServerSocketChannelImpl.bind:(Ljava/net/SocketAddress;I)Ljava/nio/channels/ServerSocketChannel;
            pop
         3: .line 89
            goto 6
      StackMap locals:
      StackMap stack: java.lang.Exception
         4: astore 3 /* x */
        start local 3 // java.lang.Exception x
         5: .line 90
            aload 3 /* x */
            invokestatic sun.nio.ch.Net.translateException:(Ljava/lang/Exception;)V
        end local 3 // java.lang.Exception x
         6: .line 92
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int backlog
        end local 1 // java.net.SocketAddress local
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lsun/nio/ch/ServerSocketAdaptor;
            0    7     1    local  Ljava/net/SocketAddress;
            0    7     2  backlog  I
            5    6     3        x  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.Exception
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      local    
      backlog  

  public java.net.InetAddress getInetAddress();
    descriptor: ()Ljava/net/InetAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
         0: .line 96
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            invokevirtual sun.nio.ch.ServerSocketChannelImpl.localAddress:()Ljava/net/InetSocketAddress;
            astore 1 /* local */
        start local 1 // java.net.InetSocketAddress local
         1: .line 97
            aload 1 /* local */
            ifnonnull 3
         2: .line 98
            aconst_null
            areturn
         3: .line 100
      StackMap locals: java.net.InetSocketAddress
      StackMap stack:
            aload 1 /* local */
            invokestatic sun.nio.ch.Net.getRevealedLocalAddress:(Ljava/net/InetSocketAddress;)Ljava/net/InetSocketAddress;
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            areturn
        end local 1 // java.net.InetSocketAddress local
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lsun/nio/ch/ServerSocketAdaptor;
            1    4     1  local  Ljava/net/InetSocketAddress;

  public int getLocalPort();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
         0: .line 106
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            invokevirtual sun.nio.ch.ServerSocketChannelImpl.localAddress:()Ljava/net/InetSocketAddress;
            astore 1 /* local */
        start local 1 // java.net.InetSocketAddress local
         1: .line 107
            aload 1 /* local */
            ifnonnull 3
         2: .line 108
            iconst_m1
            ireturn
         3: .line 110
      StackMap locals: java.net.InetSocketAddress
      StackMap stack:
            aload 1 /* local */
            invokevirtual java.net.InetSocketAddress.getPort:()I
            ireturn
        end local 1 // java.net.InetSocketAddress local
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lsun/nio/ch/ServerSocketAdaptor;
            1    4     1  local  Ljava/net/InetSocketAddress;

  public java.net.Socket accept();
    descriptor: ()Ljava/net/Socket;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
         0: .line 116
            aconst_null
            astore 1 /* sc */
        start local 1 // java.nio.channels.SocketChannel sc
         1: .line 118
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.timeout:I
            istore 2 /* timeout */
        start local 2 // int timeout
         2: .line 119
            iload 2 /* timeout */
            ifle 6
         3: .line 120
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            iload 2 /* timeout */
            i2l
            invokevirtual java.util.concurrent.TimeUnit.toNanos:(J)J
            lstore 3 /* nanos */
        start local 3 // long nanos
         4: .line 121
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            lload 3 /* nanos */
            invokevirtual sun.nio.ch.ServerSocketChannelImpl.blockingAccept:(J)Ljava/nio/channels/SocketChannel;
            astore 1 /* sc */
        end local 3 // long nanos
         5: .line 122
            goto 11
         6: .line 125
      StackMap locals: java.nio.channels.SocketChannel int
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            invokevirtual sun.nio.ch.ServerSocketChannelImpl.accept:()Ljava/nio/channels/SocketChannel;
            astore 1 /* sc */
         7: .line 126
            aload 1 /* sc */
            ifnonnull 11
         8: .line 127
            new java.nio.channels.IllegalBlockingModeException
            dup
            invokespecial java.nio.channels.IllegalBlockingModeException.<init>:()V
            athrow
        end local 2 // int timeout
         9: .line 130
      StackMap locals: sun.nio.ch.ServerSocketAdaptor java.nio.channels.SocketChannel
      StackMap stack: java.lang.Exception
            astore 2 /* e */
        start local 2 // java.lang.Exception e
        10: .line 131
            aload 2 /* e */
            invokestatic sun.nio.ch.Net.translateException:(Ljava/lang/Exception;)V
        end local 2 // java.lang.Exception e
        11: .line 133
      StackMap locals:
      StackMap stack:
            aload 1 /* sc */
            invokevirtual java.nio.channels.SocketChannel.socket:()Ljava/net/Socket;
            areturn
        end local 1 // java.nio.channels.SocketChannel sc
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Lsun/nio/ch/ServerSocketAdaptor;
            1   12     1       sc  Ljava/nio/channels/SocketChannel;
            2    9     2  timeout  I
            4    5     3    nanos  J
           10   11     2        e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           1     9       9  Class java.lang.Exception
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
         0: .line 138
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            invokevirtual sun.nio.ch.ServerSocketChannelImpl.close:()V
         1: .line 139
            return
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/nio/ch/ServerSocketAdaptor;
    Exceptions:
      throws java.io.IOException

  public java.nio.channels.ServerSocketChannel getChannel();
    descriptor: ()Ljava/nio/channels/ServerSocketChannel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
         0: .line 143
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            areturn
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/ServerSocketAdaptor;

  public boolean isBound();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
         0: .line 148
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            invokevirtual sun.nio.ch.ServerSocketChannelImpl.isBound:()Z
            ireturn
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/ServerSocketAdaptor;

  public boolean isClosed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
         0: .line 153
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            invokevirtual sun.nio.ch.ServerSocketChannelImpl.isOpen:()Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/nio/ch/ServerSocketAdaptor;

  public void setSoTimeout(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
        start local 1 // int timeout
         0: .line 158
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            invokevirtual sun.nio.ch.ServerSocketChannelImpl.isOpen:()Z
            ifne 2
         1: .line 159
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 160
      StackMap locals:
      StackMap stack:
            iload 1 /* timeout */
            ifge 4
         3: .line 161
            new java.lang.IllegalArgumentException
            dup
            ldc "timeout < 0"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 162
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* timeout */
            putfield sun.nio.ch.ServerSocketAdaptor.timeout:I
         5: .line 163
            return
        end local 1 // int timeout
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lsun/nio/ch/ServerSocketAdaptor;
            0    6     1  timeout  I
    Exceptions:
      throws java.net.SocketException
    MethodParameters:
         Name  Flags
      timeout  

  public int getSoTimeout();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
         0: .line 167
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            invokevirtual sun.nio.ch.ServerSocketChannelImpl.isOpen:()Z
            ifne 2
         1: .line 168
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 169
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.timeout:I
            ireturn
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/nio/ch/ServerSocketAdaptor;
    Exceptions:
      throws java.net.SocketException

  public void setReuseAddress(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
        start local 1 // boolean on
         0: .line 175
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            getstatic java.net.StandardSocketOptions.SO_REUSEADDR:Ljava/net/SocketOption;
            iload 1 /* on */
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual sun.nio.ch.ServerSocketChannelImpl.setOption:(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/ServerSocketChannel;
            pop
         1: .line 176
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* x */
        start local 2 // java.io.IOException x
         3: .line 177
            aload 2 /* x */
            invokestatic sun.nio.ch.Net.translateToSocketException:(Ljava/lang/Exception;)V
        end local 2 // java.io.IOException x
         4: .line 179
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean on
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/nio/ch/ServerSocketAdaptor;
            0    5     1    on  Z
            3    4     2     x  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    Exceptions:
      throws java.net.SocketException
    MethodParameters:
      Name  Flags
      on    

  public boolean getReuseAddress();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
         0: .line 184
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            getstatic java.net.StandardSocketOptions.SO_REUSEADDR:Ljava/net/SocketOption;
            invokevirtual sun.nio.ch.ServerSocketChannelImpl.getOption:(Ljava/net/SocketOption;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
         1: ireturn
         2: .line 185
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 1 /* x */
        start local 1 // java.io.IOException x
         3: .line 186
            aload 1 /* x */
            invokestatic sun.nio.ch.Net.translateToSocketException:(Ljava/lang/Exception;)V
         4: .line 187
            iconst_0
            ireturn
        end local 1 // java.io.IOException x
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/nio/ch/ServerSocketAdaptor;
            3    5     1     x  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    Exceptions:
      throws java.net.SocketException

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
         0: .line 193
            aload 0 /* this */
            invokevirtual sun.nio.ch.ServerSocketAdaptor.isBound:()Z
            ifne 2
         1: .line 194
            ldc "ServerSocket[unbound]"
            areturn
         2: .line 195
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "ServerSocket[addr="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual sun.nio.ch.ServerSocketAdaptor.getInetAddress:()Ljava/net/InetAddress;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         3: .line 196
            ldc ",localport="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual sun.nio.ch.ServerSocketAdaptor.getLocalPort:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         4: .line 195
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/nio/ch/ServerSocketAdaptor;

  public void setReceiveBufferSize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
        start local 1 // int size
         0: .line 202
            iload 1 /* size */
            ifgt 2
         1: .line 203
            new java.lang.IllegalArgumentException
            dup
            ldc "size cannot be 0 or negative"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 205
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            getstatic java.net.StandardSocketOptions.SO_RCVBUF:Ljava/net/SocketOption;
            iload 1 /* size */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual sun.nio.ch.ServerSocketChannelImpl.setOption:(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/ServerSocketChannel;
            pop
         3: .line 206
            goto 6
      StackMap locals:
      StackMap stack: java.io.IOException
         4: astore 2 /* x */
        start local 2 // java.io.IOException x
         5: .line 207
            aload 2 /* x */
            invokestatic sun.nio.ch.Net.translateToSocketException:(Ljava/lang/Exception;)V
        end local 2 // java.io.IOException x
         6: .line 209
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int size
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lsun/nio/ch/ServerSocketAdaptor;
            0    7     1  size  I
            5    6     2     x  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           2     3       4  Class java.io.IOException
    Exceptions:
      throws java.net.SocketException
    MethodParameters:
      Name  Flags
      size  

  public int getReceiveBufferSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
         0: .line 214
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            getstatic java.net.StandardSocketOptions.SO_RCVBUF:Ljava/net/SocketOption;
            invokevirtual sun.nio.ch.ServerSocketChannelImpl.getOption:(Ljava/net/SocketOption;)Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
         1: ireturn
         2: .line 215
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 1 /* x */
        start local 1 // java.io.IOException x
         3: .line 216
            aload 1 /* x */
            invokestatic sun.nio.ch.Net.translateToSocketException:(Ljava/lang/Exception;)V
         4: .line 217
            iconst_m1
            ireturn
        end local 1 // java.io.IOException x
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/nio/ch/ServerSocketAdaptor;
            3    5     1     x  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    Exceptions:
      throws java.net.SocketException

  public <T> java.net.ServerSocket setOption(java.net.SocketOption<T>, T);
    descriptor: (Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/net/ServerSocket;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
        start local 1 // java.net.SocketOption name
        start local 2 // java.lang.Object value
         0: .line 223
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            aload 1 /* name */
            aload 2 /* value */
            invokevirtual sun.nio.ch.ServerSocketChannelImpl.setOption:(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/ServerSocketChannel;
            pop
         1: .line 224
            aload 0 /* this */
            areturn
        end local 2 // java.lang.Object value
        end local 1 // java.net.SocketOption name
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lsun/nio/ch/ServerSocketAdaptor;
            0    2     1   name  Ljava/net/SocketOption<TT;>;
            0    2     2  value  TT;
    Exceptions:
      throws java.io.IOException
    Signature: <T:Ljava/lang/Object;>(Ljava/net/SocketOption<TT;>;TT;)Ljava/net/ServerSocket;
    MethodParameters:
       Name  Flags
      name   
      value  

  public <T> T getOption(java.net.SocketOption<T>);
    descriptor: (Ljava/net/SocketOption;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
        start local 1 // java.net.SocketOption name
         0: .line 229
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            aload 1 /* name */
            invokevirtual sun.nio.ch.ServerSocketChannelImpl.getOption:(Ljava/net/SocketOption;)Ljava/lang/Object;
            areturn
        end local 1 // java.net.SocketOption name
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/ServerSocketAdaptor;
            0    1     1  name  Ljava/net/SocketOption<TT;>;
    Exceptions:
      throws java.io.IOException
    Signature: <T:Ljava/lang/Object;>(Ljava/net/SocketOption<TT;>;)TT;
    MethodParameters:
      Name  Flags
      name  

  public java.util.Set<java.net.SocketOption<?>> supportedOptions();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.ServerSocketAdaptor this
         0: .line 234
            aload 0 /* this */
            getfield sun.nio.ch.ServerSocketAdaptor.ssc:Lsun/nio/ch/ServerSocketChannelImpl;
            invokevirtual sun.nio.ch.ServerSocketChannelImpl.supportedOptions:()Ljava/util/Set;
            areturn
        end local 0 // sun.nio.ch.ServerSocketAdaptor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/ServerSocketAdaptor;
    Signature: ()Ljava/util/Set<Ljava/net/SocketOption<*>;>;

  private static java.net.ServerSocket lambda$0(sun.nio.ch.ServerSocketChannelImpl);
    descriptor: (Lsun/nio/ch/ServerSocketChannelImpl;)Ljava/net/ServerSocket;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=1
         0: .line 65
            new sun.nio.ch.ServerSocketAdaptor
            dup
            aload 0
            invokespecial sun.nio.ch.ServerSocketAdaptor.<init>:(Lsun/nio/ch/ServerSocketChannelImpl;)V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.Exception
}
SourceFile: "ServerSocketAdaptor.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles