abstract class com.google.common.util.concurrent.ForwardingLock implements java.util.concurrent.locks.Lock
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: com.google.common.util.concurrent.ForwardingLock
  super_class: java.lang.Object
{
  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.ForwardingLock this
         0: .line 22
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.google.common.util.concurrent.ForwardingLock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/util/concurrent/ForwardingLock;

  abstract java.util.concurrent.locks.Lock delegate();
    descriptor: ()Ljava/util/concurrent/locks/Lock;
    flags: (0x0400) ACC_ABSTRACT

  public void lock();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.ForwardingLock this
         0: .line 27
            aload 0 /* this */
            invokevirtual com.google.common.util.concurrent.ForwardingLock.delegate:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 28
            return
        end local 0 // com.google.common.util.concurrent.ForwardingLock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/util/concurrent/ForwardingLock;

  public void lockInterruptibly();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.ForwardingLock this
         0: .line 32
            aload 0 /* this */
            invokevirtual com.google.common.util.concurrent.ForwardingLock.delegate:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lockInterruptibly:()V
         1: .line 33
            return
        end local 0 // com.google.common.util.concurrent.ForwardingLock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/util/concurrent/ForwardingLock;
    Exceptions:
      throws java.lang.InterruptedException

  public boolean tryLock();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.ForwardingLock this
         0: .line 37
            aload 0 /* this */
            invokevirtual com.google.common.util.concurrent.ForwardingLock.delegate:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.tryLock:()Z
            ireturn
        end local 0 // com.google.common.util.concurrent.ForwardingLock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/util/concurrent/ForwardingLock;

  public boolean tryLock(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.google.common.util.concurrent.ForwardingLock this
        start local 1 // long time
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 42
            aload 0 /* this */
            invokevirtual com.google.common.util.concurrent.ForwardingLock.delegate:()Ljava/util/concurrent/locks/Lock;
            lload 1 /* time */
            aload 3 /* unit */
            invokeinterface java.util.concurrent.locks.Lock.tryLock:(JLjava/util/concurrent/TimeUnit;)Z
            ireturn
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long time
        end local 0 // com.google.common.util.concurrent.ForwardingLock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/util/concurrent/ForwardingLock;
            0    1     1  time  J
            0    1     3  unit  Ljava/util/concurrent/TimeUnit;
    Exceptions:
      throws java.lang.InterruptedException
    MethodParameters:
      Name  Flags
      time  
      unit  

  public void unlock();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.ForwardingLock this
         0: .line 47
            aload 0 /* this */
            invokevirtual com.google.common.util.concurrent.ForwardingLock.delegate:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         1: .line 48
            return
        end local 0 // com.google.common.util.concurrent.ForwardingLock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/util/concurrent/ForwardingLock;

  public java.util.concurrent.locks.Condition newCondition();
    descriptor: ()Ljava/util/concurrent/locks/Condition;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.ForwardingLock this
         0: .line 52
            aload 0 /* this */
            invokevirtual com.google.common.util.concurrent.ForwardingLock.delegate:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.newCondition:()Ljava/util/concurrent/locks/Condition;
            areturn
        end local 0 // com.google.common.util.concurrent.ForwardingLock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/util/concurrent/ForwardingLock;
}
SourceFile: "ForwardingLock.java"