public class org.eclipse.jgit.api.AddNoteCommand extends org.eclipse.jgit.api.GitCommand<org.eclipse.jgit.notes.Note>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jgit.api.AddNoteCommand
  super_class: org.eclipse.jgit.api.GitCommand
{
  private org.eclipse.jgit.revwalk.RevObject id;
    descriptor: Lorg/eclipse/jgit/revwalk/RevObject;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String message;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String notesRef;
    descriptor: Ljava/lang/String;
    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=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.AddNoteCommand this
        start local 1 // org.eclipse.jgit.lib.Repository repo
         0: .line 51
            aload 0 /* this */
            aload 1 /* repo */
            invokespecial org.eclipse.jgit.api.GitCommand.<init>:(Lorg/eclipse/jgit/lib/Repository;)V
         1: .line 42
            aload 0 /* this */
            ldc "refs/notes/commits"
            putfield org.eclipse.jgit.api.AddNoteCommand.notesRef:Ljava/lang/String;
         2: .line 52
            return
        end local 1 // org.eclipse.jgit.lib.Repository repo
        end local 0 // org.eclipse.jgit.api.AddNoteCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jgit/api/AddNoteCommand;
            0    3     1  repo  Lorg/eclipse/jgit/lib/Repository;
    MethodParameters:
      Name  Flags
      repo  

  public org.eclipse.jgit.notes.Note call();
    descriptor: ()Lorg/eclipse/jgit/notes/Note;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=8, args_size=1
        start local 0 // org.eclipse.jgit.api.AddNoteCommand this
         0: .line 57
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.api.AddNoteCommand.checkCallable:()V
         1: .line 58
            invokestatic org.eclipse.jgit.notes.NoteMap.newEmptyMap:()Lorg/eclipse/jgit/notes/NoteMap;
            astore 1 /* map */
        start local 1 // org.eclipse.jgit.notes.NoteMap map
         2: .line 59
            aconst_null
            astore 2 /* notesCommit */
        start local 2 // org.eclipse.jgit.revwalk.RevCommit notesCommit
         3: .line 60
            aconst_null
            astore 3
            aconst_null
            astore 4
         4: new org.eclipse.jgit.revwalk.RevWalk
            dup
            aload 0 /* this */
            getfield org.eclipse.jgit.api.AddNoteCommand.repo:Lorg/eclipse/jgit/lib/Repository;
            invokespecial org.eclipse.jgit.revwalk.RevWalk.<init>:(Lorg/eclipse/jgit/lib/Repository;)V
            astore 5 /* walk */
        start local 5 // org.eclipse.jgit.revwalk.RevWalk walk
         5: .line 61
            aload 0 /* this */
            getfield org.eclipse.jgit.api.AddNoteCommand.repo:Lorg/eclipse/jgit/lib/Repository;
            invokevirtual org.eclipse.jgit.lib.Repository.newObjectInserter:()Lorg/eclipse/jgit/lib/ObjectInserter;
            astore 6 /* inserter */
        start local 6 // org.eclipse.jgit.lib.ObjectInserter inserter
         6: .line 62
            aload 0 /* this */
            getfield org.eclipse.jgit.api.AddNoteCommand.repo:Lorg/eclipse/jgit/lib/Repository;
            aload 0 /* this */
            getfield org.eclipse.jgit.api.AddNoteCommand.notesRef:Ljava/lang/String;
            invokevirtual org.eclipse.jgit.lib.Repository.findRef:(Ljava/lang/String;)Lorg/eclipse/jgit/lib/Ref;
            astore 7 /* ref */
        start local 7 // org.eclipse.jgit.lib.Ref ref
         7: .line 64
            aload 7 /* ref */
            ifnull 10
         8: .line 65
            aload 5 /* walk */
            aload 7 /* ref */
            invokeinterface org.eclipse.jgit.lib.Ref.getObjectId:()Lorg/eclipse/jgit/lib/ObjectId;
            invokevirtual org.eclipse.jgit.revwalk.RevWalk.parseCommit:(Lorg/eclipse/jgit/lib/AnyObjectId;)Lorg/eclipse/jgit/revwalk/RevCommit;
            astore 2 /* notesCommit */
         9: .line 66
            aload 5 /* walk */
            invokevirtual org.eclipse.jgit.revwalk.RevWalk.getObjectReader:()Lorg/eclipse/jgit/lib/ObjectReader;
            aload 2 /* notesCommit */
            invokestatic org.eclipse.jgit.notes.NoteMap.read:(Lorg/eclipse/jgit/lib/ObjectReader;Lorg/eclipse/jgit/revwalk/RevCommit;)Lorg/eclipse/jgit/notes/NoteMap;
            astore 1 /* map */
        10: .line 68
      StackMap locals: org.eclipse.jgit.api.AddNoteCommand org.eclipse.jgit.notes.NoteMap org.eclipse.jgit.revwalk.RevCommit java.lang.Throwable java.lang.Throwable org.eclipse.jgit.revwalk.RevWalk org.eclipse.jgit.lib.ObjectInserter org.eclipse.jgit.lib.Ref
      StackMap stack:
            aload 1 /* map */
            aload 0 /* this */
            getfield org.eclipse.jgit.api.AddNoteCommand.id:Lorg/eclipse/jgit/revwalk/RevObject;
            aload 0 /* this */
            getfield org.eclipse.jgit.api.AddNoteCommand.message:Ljava/lang/String;
            aload 6 /* inserter */
            invokevirtual org.eclipse.jgit.notes.NoteMap.set:(Lorg/eclipse/jgit/lib/AnyObjectId;Ljava/lang/String;Lorg/eclipse/jgit/lib/ObjectInserter;)V
        11: .line 69
            aload 0 /* this */
            getfield org.eclipse.jgit.api.AddNoteCommand.repo:Lorg/eclipse/jgit/lib/Repository;
            aload 0 /* this */
            getfield org.eclipse.jgit.api.AddNoteCommand.notesRef:Ljava/lang/String;
            aload 5 /* walk */
            aload 1 /* map */
            aload 2 /* notesCommit */
            aload 6 /* inserter */
        12: .line 70
            ldc "Notes added by 'git notes add'"
        13: .line 69
            invokestatic org.eclipse.jgit.api.AddNoteCommand.commitNoteMap:(Lorg/eclipse/jgit/lib/Repository;Ljava/lang/String;Lorg/eclipse/jgit/revwalk/RevWalk;Lorg/eclipse/jgit/notes/NoteMap;Lorg/eclipse/jgit/revwalk/RevCommit;Lorg/eclipse/jgit/lib/ObjectInserter;Ljava/lang/String;)V
        14: .line 71
            aload 1 /* map */
            aload 0 /* this */
            getfield org.eclipse.jgit.api.AddNoteCommand.id:Lorg/eclipse/jgit/revwalk/RevObject;
            invokevirtual org.eclipse.jgit.notes.NoteMap.getNote:(Lorg/eclipse/jgit/lib/AnyObjectId;)Lorg/eclipse/jgit/notes/Note;
        15: .line 72
            aload 6 /* inserter */
            ifnull 16
            aload 6 /* inserter */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter.close:()V
      StackMap locals:
      StackMap stack: org.eclipse.jgit.notes.Note
        16: aload 5 /* walk */
            ifnull 17
            aload 5 /* walk */
            invokevirtual org.eclipse.jgit.revwalk.RevWalk.close:()V
        17: .line 71
      StackMap locals:
      StackMap stack: org.eclipse.jgit.notes.Note
            areturn
        end local 7 // org.eclipse.jgit.lib.Ref ref
      StackMap locals: org.eclipse.jgit.api.AddNoteCommand org.eclipse.jgit.notes.NoteMap org.eclipse.jgit.revwalk.RevCommit java.lang.Throwable java.lang.Throwable org.eclipse.jgit.revwalk.RevWalk org.eclipse.jgit.lib.ObjectInserter
      StackMap stack: java.lang.Throwable
        18: astore 3
        19: .line 72
            aload 6 /* inserter */
            ifnull 20
            aload 6 /* inserter */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter.close:()V
        end local 6 // org.eclipse.jgit.lib.ObjectInserter inserter
      StackMap locals:
      StackMap stack:
        20: aload 3
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        21: astore 4
            aload 3
            ifnonnull 22
            aload 4
            astore 3
            goto 23
      StackMap locals:
      StackMap stack:
        22: aload 3
            aload 4
            if_acmpeq 23
            aload 3
            aload 4
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        23: aload 5 /* walk */
            ifnull 24
            aload 5 /* walk */
            invokevirtual org.eclipse.jgit.revwalk.RevWalk.close:()V
        end local 5 // org.eclipse.jgit.revwalk.RevWalk walk
      StackMap locals:
      StackMap stack:
        24: aload 3
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        25: astore 4
            aload 3
            ifnonnull 26
            aload 4
            astore 3
            goto 27
      StackMap locals:
      StackMap stack:
        26: aload 3
            aload 4
            if_acmpeq 27
            aload 3
            aload 4
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        27: aload 3
            athrow
      StackMap locals: org.eclipse.jgit.api.AddNoteCommand org.eclipse.jgit.notes.NoteMap org.eclipse.jgit.revwalk.RevCommit
      StackMap stack: java.io.IOException
        28: astore 3 /* e */
        start local 3 // java.io.IOException e
        29: .line 73
            new org.eclipse.jgit.api.errors.JGitInternalException
            dup
            aload 3 /* e */
            invokevirtual java.io.IOException.getMessage:()Ljava/lang/String;
            aload 3 /* e */
            invokespecial org.eclipse.jgit.api.errors.JGitInternalException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.io.IOException e
        end local 2 // org.eclipse.jgit.revwalk.RevCommit notesCommit
        end local 1 // org.eclipse.jgit.notes.NoteMap map
        end local 0 // org.eclipse.jgit.api.AddNoteCommand this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   30     0         this  Lorg/eclipse/jgit/api/AddNoteCommand;
            2   30     1          map  Lorg/eclipse/jgit/notes/NoteMap;
            3   30     2  notesCommit  Lorg/eclipse/jgit/revwalk/RevCommit;
            5   24     5         walk  Lorg/eclipse/jgit/revwalk/RevWalk;
            6   20     6     inserter  Lorg/eclipse/jgit/lib/ObjectInserter;
            7   18     7          ref  Lorg/eclipse/jgit/lib/Ref;
           29   30     3            e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           6    15      18  any
           5    16      21  any
          18    21      21  any
           4    17      25  any
          18    25      25  any
           3    17      28  Class java.io.IOException
          18    28      28  Class java.io.IOException
    Exceptions:
      throws org.eclipse.jgit.api.errors.GitAPIException

  public org.eclipse.jgit.api.AddNoteCommand setObjectId(org.eclipse.jgit.revwalk.RevObject);
    descriptor: (Lorg/eclipse/jgit/revwalk/RevObject;)Lorg/eclipse/jgit/api/AddNoteCommand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.AddNoteCommand this
        start local 1 // org.eclipse.jgit.revwalk.RevObject id
         0: .line 86
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.api.AddNoteCommand.checkCallable:()V
         1: .line 87
            aload 0 /* this */
            aload 1 /* id */
            putfield org.eclipse.jgit.api.AddNoteCommand.id:Lorg/eclipse/jgit/revwalk/RevObject;
         2: .line 88
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.jgit.revwalk.RevObject id
        end local 0 // org.eclipse.jgit.api.AddNoteCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jgit/api/AddNoteCommand;
            0    3     1    id  Lorg/eclipse/jgit/revwalk/RevObject;
    MethodParameters:
      Name  Flags
      id    

  public org.eclipse.jgit.api.AddNoteCommand setMessage(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/eclipse/jgit/api/AddNoteCommand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.AddNoteCommand this
        start local 1 // java.lang.String message
         0: .line 99
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.api.AddNoteCommand.checkCallable:()V
         1: .line 100
            aload 0 /* this */
            aload 1 /* message */
            putfield org.eclipse.jgit.api.AddNoteCommand.message:Ljava/lang/String;
         2: .line 101
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String message
        end local 0 // org.eclipse.jgit.api.AddNoteCommand this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/eclipse/jgit/api/AddNoteCommand;
            0    3     1  message  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      message  

  static void commitNoteMap(org.eclipse.jgit.lib.Repository, java.lang.String, org.eclipse.jgit.revwalk.RevWalk, org.eclipse.jgit.notes.NoteMap, org.eclipse.jgit.revwalk.RevCommit, org.eclipse.jgit.lib.ObjectInserter, java.lang.String);
    descriptor: (Lorg/eclipse/jgit/lib/Repository;Ljava/lang/String;Lorg/eclipse/jgit/revwalk/RevWalk;Lorg/eclipse/jgit/notes/NoteMap;Lorg/eclipse/jgit/revwalk/RevCommit;Lorg/eclipse/jgit/lib/ObjectInserter;Ljava/lang/String;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=10, args_size=7
        start local 0 // org.eclipse.jgit.lib.Repository r
        start local 1 // java.lang.String ref
        start local 2 // org.eclipse.jgit.revwalk.RevWalk walk
        start local 3 // org.eclipse.jgit.notes.NoteMap map
        start local 4 // org.eclipse.jgit.revwalk.RevCommit notesCommit
        start local 5 // org.eclipse.jgit.lib.ObjectInserter inserter
        start local 6 // java.lang.String msg
         0: .line 111
            new org.eclipse.jgit.lib.CommitBuilder
            dup
            invokespecial org.eclipse.jgit.lib.CommitBuilder.<init>:()V
            astore 7 /* builder */
        start local 7 // org.eclipse.jgit.lib.CommitBuilder builder
         1: .line 112
            aload 7 /* builder */
            aload 3 /* map */
            aload 5 /* inserter */
            invokevirtual org.eclipse.jgit.notes.NoteMap.writeTree:(Lorg/eclipse/jgit/lib/ObjectInserter;)Lorg/eclipse/jgit/lib/ObjectId;
            invokevirtual org.eclipse.jgit.lib.CommitBuilder.setTreeId:(Lorg/eclipse/jgit/lib/AnyObjectId;)V
         2: .line 113
            aload 7 /* builder */
            new org.eclipse.jgit.lib.PersonIdent
            dup
            aload 0 /* r */
            invokespecial org.eclipse.jgit.lib.PersonIdent.<init>:(Lorg/eclipse/jgit/lib/Repository;)V
            invokevirtual org.eclipse.jgit.lib.CommitBuilder.setAuthor:(Lorg/eclipse/jgit/lib/PersonIdent;)V
         3: .line 114
            aload 7 /* builder */
            aload 7 /* builder */
            invokevirtual org.eclipse.jgit.lib.CommitBuilder.getAuthor:()Lorg/eclipse/jgit/lib/PersonIdent;
            invokevirtual org.eclipse.jgit.lib.CommitBuilder.setCommitter:(Lorg/eclipse/jgit/lib/PersonIdent;)V
         4: .line 115
            aload 7 /* builder */
            aload 6 /* msg */
            invokevirtual org.eclipse.jgit.lib.CommitBuilder.setMessage:(Ljava/lang/String;)V
         5: .line 116
            aload 4 /* notesCommit */
            ifnull 7
         6: .line 117
            aload 7 /* builder */
            iconst_1
            anewarray org.eclipse.jgit.lib.ObjectId
            dup
            iconst_0
            aload 4 /* notesCommit */
            aastore
            invokevirtual org.eclipse.jgit.lib.CommitBuilder.setParentIds:([Lorg/eclipse/jgit/lib/ObjectId;)V
         7: .line 118
      StackMap locals: org.eclipse.jgit.lib.CommitBuilder
      StackMap stack:
            aload 5 /* inserter */
            aload 7 /* builder */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter.insert:(Lorg/eclipse/jgit/lib/CommitBuilder;)Lorg/eclipse/jgit/lib/ObjectId;
            astore 8 /* commit */
        start local 8 // org.eclipse.jgit.lib.ObjectId commit
         8: .line 119
            aload 5 /* inserter */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter.flush:()V
         9: .line 120
            aload 0 /* r */
            aload 1 /* ref */
            invokevirtual org.eclipse.jgit.lib.Repository.updateRef:(Ljava/lang/String;)Lorg/eclipse/jgit/lib/RefUpdate;
            astore 9 /* refUpdate */
        start local 9 // org.eclipse.jgit.lib.RefUpdate refUpdate
        10: .line 121
            aload 4 /* notesCommit */
            ifnull 12
        11: .line 122
            aload 9 /* refUpdate */
            aload 4 /* notesCommit */
            invokevirtual org.eclipse.jgit.lib.RefUpdate.setExpectedOldObjectId:(Lorg/eclipse/jgit/lib/AnyObjectId;)V
            goto 13
        12: .line 124
      StackMap locals: org.eclipse.jgit.lib.ObjectId org.eclipse.jgit.lib.RefUpdate
      StackMap stack:
            aload 9 /* refUpdate */
            invokestatic org.eclipse.jgit.lib.ObjectId.zeroId:()Lorg/eclipse/jgit/lib/ObjectId;
            invokevirtual org.eclipse.jgit.lib.RefUpdate.setExpectedOldObjectId:(Lorg/eclipse/jgit/lib/AnyObjectId;)V
        13: .line 125
      StackMap locals:
      StackMap stack:
            aload 9 /* refUpdate */
            aload 8 /* commit */
            invokevirtual org.eclipse.jgit.lib.RefUpdate.setNewObjectId:(Lorg/eclipse/jgit/lib/AnyObjectId;)V
        14: .line 126
            aload 9 /* refUpdate */
            aload 2 /* walk */
            invokevirtual org.eclipse.jgit.lib.RefUpdate.update:(Lorg/eclipse/jgit/revwalk/RevWalk;)Lorg/eclipse/jgit/lib/RefUpdate$Result;
            pop
        15: .line 127
            return
        end local 9 // org.eclipse.jgit.lib.RefUpdate refUpdate
        end local 8 // org.eclipse.jgit.lib.ObjectId commit
        end local 7 // org.eclipse.jgit.lib.CommitBuilder builder
        end local 6 // java.lang.String msg
        end local 5 // org.eclipse.jgit.lib.ObjectInserter inserter
        end local 4 // org.eclipse.jgit.revwalk.RevCommit notesCommit
        end local 3 // org.eclipse.jgit.notes.NoteMap map
        end local 2 // org.eclipse.jgit.revwalk.RevWalk walk
        end local 1 // java.lang.String ref
        end local 0 // org.eclipse.jgit.lib.Repository r
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   16     0            r  Lorg/eclipse/jgit/lib/Repository;
            0   16     1          ref  Ljava/lang/String;
            0   16     2         walk  Lorg/eclipse/jgit/revwalk/RevWalk;
            0   16     3          map  Lorg/eclipse/jgit/notes/NoteMap;
            0   16     4  notesCommit  Lorg/eclipse/jgit/revwalk/RevCommit;
            0   16     5     inserter  Lorg/eclipse/jgit/lib/ObjectInserter;
            0   16     6          msg  Ljava/lang/String;
            1   16     7      builder  Lorg/eclipse/jgit/lib/CommitBuilder;
            8   16     8       commit  Lorg/eclipse/jgit/lib/ObjectId;
           10   16     9    refUpdate  Lorg/eclipse/jgit/lib/RefUpdate;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
             Name  Flags
      r            
      ref          
      walk         
      map          
      notesCommit  
      inserter     
      msg          

  public org.eclipse.jgit.api.AddNoteCommand setNotesRef(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/eclipse/jgit/api/AddNoteCommand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.AddNoteCommand this
        start local 1 // java.lang.String notesRef
         0: .line 140
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.api.AddNoteCommand.checkCallable:()V
         1: .line 141
            aload 0 /* this */
            aload 1 /* notesRef */
            putfield org.eclipse.jgit.api.AddNoteCommand.notesRef:Ljava/lang/String;
         2: .line 142
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String notesRef
        end local 0 // org.eclipse.jgit.api.AddNoteCommand this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/jgit/api/AddNoteCommand;
            0    3     1  notesRef  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      notesRef  

  public java.lang.Object call();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.jgit.api.AddNoteCommand.call:()Lorg/eclipse/jgit/notes/Note;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws org.eclipse.jgit.api.errors.GitAPIException
}
Signature: Lorg/eclipse/jgit/api/GitCommand<Lorg/eclipse/jgit/notes/Note;>;
SourceFile: "AddNoteCommand.java"
InnerClasses:
  public final Result = org.eclipse.jgit.lib.RefUpdate$Result of org.eclipse.jgit.lib.RefUpdate