public abstract class org.eclipse.jgit.api.GitCommand<T> implements java.util.concurrent.Callable<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.eclipse.jgit.api.GitCommand
  super_class: java.lang.Object
{
  protected final org.eclipse.jgit.lib.Repository repo;
    descriptor: Lorg/eclipse/jgit/lib/Repository;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  private java.util.concurrent.atomic.AtomicBoolean callable;
    descriptor: Ljava/util/concurrent/atomic/AtomicBoolean;
    flags: (0x0002) ACC_PRIVATE

  protected void <init>(org.eclipse.jgit.lib.Repository);
    descriptor: (Lorg/eclipse/jgit/lib/Repository;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.GitCommand this
        start local 1 // org.eclipse.jgit.lib.Repository repo
         0: .line 86
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 77
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            iconst_1
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:(Z)V
            putfield org.eclipse.jgit.api.GitCommand.callable:Ljava/util/concurrent/atomic/AtomicBoolean;
         2: .line 87
            aload 0 /* this */
            aload 1 /* repo */
            putfield org.eclipse.jgit.api.GitCommand.repo:Lorg/eclipse/jgit/lib/Repository;
         3: .line 88
            return
        end local 1 // org.eclipse.jgit.lib.Repository repo
        end local 0 // org.eclipse.jgit.api.GitCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/jgit/api/GitCommand<TT;>;
            0    4     1  repo  Lorg/eclipse/jgit/lib/Repository;
    MethodParameters:
      Name  Flags
      repo  

  public org.eclipse.jgit.lib.Repository getRepository();
    descriptor: ()Lorg/eclipse/jgit/lib/Repository;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.api.GitCommand this
         0: .line 97
            aload 0 /* this */
            getfield org.eclipse.jgit.api.GitCommand.repo:Lorg/eclipse/jgit/lib/Repository;
            areturn
        end local 0 // org.eclipse.jgit.api.GitCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/api/GitCommand<TT;>;

  protected void setCallable(boolean);
    descriptor: (Z)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.GitCommand this
        start local 1 // boolean callable
         0: .line 110
            aload 0 /* this */
            getfield org.eclipse.jgit.api.GitCommand.callable:Ljava/util/concurrent/atomic/AtomicBoolean;
            iload 1 /* callable */
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.set:(Z)V
         1: .line 111
            return
        end local 1 // boolean callable
        end local 0 // org.eclipse.jgit.api.GitCommand this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/jgit/api/GitCommand<TT;>;
            0    2     1  callable  Z
    MethodParameters:
          Name  Flags
      callable  

  protected void checkCallable();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.api.GitCommand this
         0: .line 122
            aload 0 /* this */
            getfield org.eclipse.jgit.api.GitCommand.callable:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ifne 5
         1: .line 123
            new java.lang.IllegalStateException
            dup
         2: .line 124
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.commandWasCalledInTheWrongState:Ljava/lang/String;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
         3: .line 125
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            aastore
         4: .line 123
            invokestatic java.text.MessageFormat.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 126
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jgit.api.GitCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/jgit/api/GitCommand<TT;>;

  public abstract T call();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.eclipse.jgit.api.errors.GitAPIException
    Signature: ()TT;
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Ljava/util/concurrent/Callable<TT;>;
SourceFile: "GitCommand.java"