public class org.eclipse.jgit.api.DiffCommand extends org.eclipse.jgit.api.GitCommand<java.util.List<org.eclipse.jgit.diff.DiffEntry>>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jgit.api.DiffCommand
  super_class: org.eclipse.jgit.api.GitCommand
{
  private org.eclipse.jgit.treewalk.AbstractTreeIterator oldTree;
    descriptor: Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;
    flags: (0x0002) ACC_PRIVATE

  private org.eclipse.jgit.treewalk.AbstractTreeIterator newTree;
    descriptor: Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;
    flags: (0x0002) ACC_PRIVATE

  private boolean cached;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private org.eclipse.jgit.treewalk.filter.TreeFilter pathFilter;
    descriptor: Lorg/eclipse/jgit/treewalk/filter/TreeFilter;
    flags: (0x0002) ACC_PRIVATE

  private boolean showNameAndStatusOnly;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private java.io.OutputStream out;
    descriptor: Ljava/io/OutputStream;
    flags: (0x0002) ACC_PRIVATE

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

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

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

  private org.eclipse.jgit.lib.ProgressMonitor monitor;
    descriptor: Lorg/eclipse/jgit/lib/ProgressMonitor;
    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.DiffCommand this
        start local 1 // org.eclipse.jgit.lib.Repository repo
         0: .line 71
            aload 0 /* this */
            aload 1 /* repo */
            invokespecial org.eclipse.jgit.api.GitCommand.<init>:(Lorg/eclipse/jgit/lib/Repository;)V
         1: .line 50
            aload 0 /* this */
            getstatic org.eclipse.jgit.treewalk.filter.TreeFilter.ALL:Lorg/eclipse/jgit/treewalk/filter/TreeFilter;
            putfield org.eclipse.jgit.api.DiffCommand.pathFilter:Lorg/eclipse/jgit/treewalk/filter/TreeFilter;
         2: .line 56
            aload 0 /* this */
            iconst_m1
            putfield org.eclipse.jgit.api.DiffCommand.contextLines:I
         3: .line 62
            aload 0 /* this */
            getstatic org.eclipse.jgit.lib.NullProgressMonitor.INSTANCE:Lorg/eclipse/jgit/lib/NullProgressMonitor;
            putfield org.eclipse.jgit.api.DiffCommand.monitor:Lorg/eclipse/jgit/lib/ProgressMonitor;
         4: .line 72
            return
        end local 1 // org.eclipse.jgit.lib.Repository repo
        end local 0 // org.eclipse.jgit.api.DiffCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/jgit/api/DiffCommand;
            0    5     1  repo  Lorg/eclipse/jgit/lib/Repository;
    MethodParameters:
      Name  Flags
      repo  

  private org.eclipse.jgit.diff.DiffFormatter getDiffFormatter();
    descriptor: ()Lorg/eclipse/jgit/diff/DiffFormatter;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.api.DiffCommand this
         0: .line 75
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.out:Ljava/io/OutputStream;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.showNameAndStatusOnly:Z
            ifne 2
         1: .line 76
            new org.eclipse.jgit.diff.DiffFormatter
            dup
            new java.io.BufferedOutputStream
            dup
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.out:Ljava/io/OutputStream;
            invokespecial java.io.BufferedOutputStream.<init>:(Ljava/io/OutputStream;)V
            invokespecial org.eclipse.jgit.diff.DiffFormatter.<init>:(Ljava/io/OutputStream;)V
            goto 3
         2: .line 77
      StackMap locals:
      StackMap stack:
            new org.eclipse.jgit.diff.DiffFormatter
            dup
            getstatic org.eclipse.jgit.util.io.NullOutputStream.INSTANCE:Lorg/eclipse/jgit/util/io/NullOutputStream;
            invokespecial org.eclipse.jgit.diff.DiffFormatter.<init>:(Ljava/io/OutputStream;)V
         3: .line 75
      StackMap locals:
      StackMap stack: org.eclipse.jgit.diff.DiffFormatter
            areturn
        end local 0 // org.eclipse.jgit.api.DiffCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/jgit/api/DiffCommand;

  public java.util.List<org.eclipse.jgit.diff.DiffEntry> call();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=1
        start local 0 // org.eclipse.jgit.api.DiffCommand this
         0: .line 90
            aconst_null
            astore 1
            aconst_null
            astore 2
         1: aload 0 /* this */
            invokevirtual org.eclipse.jgit.api.DiffCommand.getDiffFormatter:()Lorg/eclipse/jgit/diff/DiffFormatter;
            astore 3 /* diffFmt */
        start local 3 // org.eclipse.jgit.diff.DiffFormatter diffFmt
         2: .line 91
            aload 3 /* diffFmt */
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.repo:Lorg/eclipse/jgit/lib/Repository;
            invokevirtual org.eclipse.jgit.diff.DiffFormatter.setRepository:(Lorg/eclipse/jgit/lib/Repository;)V
         3: .line 92
            aload 3 /* diffFmt */
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.monitor:Lorg/eclipse/jgit/lib/ProgressMonitor;
            invokevirtual org.eclipse.jgit.diff.DiffFormatter.setProgressMonitor:(Lorg/eclipse/jgit/lib/ProgressMonitor;)V
         4: .line 93
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.cached:Z
            ifeq 22
         5: .line 94
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.oldTree:Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;
            ifnonnull 20
         6: .line 95
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.repo:Lorg/eclipse/jgit/lib/Repository;
            ldc "HEAD^{tree}"
            invokevirtual org.eclipse.jgit.lib.Repository.resolve:(Ljava/lang/String;)Lorg/eclipse/jgit/lib/ObjectId;
            astore 4 /* head */
        start local 4 // org.eclipse.jgit.lib.ObjectId head
         7: .line 96
            aload 4 /* head */
            ifnonnull 9
         8: .line 97
            new org.eclipse.jgit.api.errors.NoHeadException
            dup
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.cannotReadTree:Ljava/lang/String;
            invokespecial org.eclipse.jgit.api.errors.NoHeadException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 98
      StackMap locals: org.eclipse.jgit.api.DiffCommand java.lang.Throwable java.lang.Throwable org.eclipse.jgit.diff.DiffFormatter org.eclipse.jgit.lib.ObjectId
      StackMap stack:
            new org.eclipse.jgit.treewalk.CanonicalTreeParser
            dup
            invokespecial org.eclipse.jgit.treewalk.CanonicalTreeParser.<init>:()V
            astore 5 /* p */
        start local 5 // org.eclipse.jgit.treewalk.CanonicalTreeParser p
        10: .line 99
            aconst_null
            astore 6
            aconst_null
            astore 7
        11: aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.repo:Lorg/eclipse/jgit/lib/Repository;
            invokevirtual org.eclipse.jgit.lib.Repository.newObjectReader:()Lorg/eclipse/jgit/lib/ObjectReader;
            astore 8 /* reader */
        start local 8 // org.eclipse.jgit.lib.ObjectReader reader
        12: .line 100
            aload 5 /* p */
            aload 8 /* reader */
            aload 4 /* head */
            invokevirtual org.eclipse.jgit.treewalk.CanonicalTreeParser.reset:(Lorg/eclipse/jgit/lib/ObjectReader;Lorg/eclipse/jgit/lib/AnyObjectId;)V
        13: .line 101
            aload 8 /* reader */
            ifnull 19
            aload 8 /* reader */
            invokevirtual org.eclipse.jgit.lib.ObjectReader.close:()V
            goto 19
      StackMap locals: org.eclipse.jgit.api.DiffCommand java.lang.Throwable java.lang.Throwable org.eclipse.jgit.diff.DiffFormatter org.eclipse.jgit.lib.ObjectId org.eclipse.jgit.treewalk.CanonicalTreeParser java.lang.Throwable java.lang.Throwable org.eclipse.jgit.lib.ObjectReader
      StackMap stack: java.lang.Throwable
        14: astore 6
            aload 8 /* reader */
            ifnull 15
            aload 8 /* reader */
            invokevirtual org.eclipse.jgit.lib.ObjectReader.close:()V
        end local 8 // org.eclipse.jgit.lib.ObjectReader reader
      StackMap locals:
      StackMap stack:
        15: aload 6
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        16: astore 7
            aload 6
            ifnonnull 17
            aload 7
            astore 6
            goto 18
      StackMap locals:
      StackMap stack:
        17: aload 6
            aload 7
            if_acmpeq 18
            aload 6
            aload 7
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        18: aload 6
            athrow
        19: .line 102
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 5 /* p */
            putfield org.eclipse.jgit.api.DiffCommand.oldTree:Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;
        end local 5 // org.eclipse.jgit.treewalk.CanonicalTreeParser p
        end local 4 // org.eclipse.jgit.lib.ObjectId head
        20: .line 104
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new org.eclipse.jgit.dircache.DirCacheIterator
            dup
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.repo:Lorg/eclipse/jgit/lib/Repository;
            invokevirtual org.eclipse.jgit.lib.Repository.readDirCache:()Lorg/eclipse/jgit/dircache/DirCache;
            invokespecial org.eclipse.jgit.dircache.DirCacheIterator.<init>:(Lorg/eclipse/jgit/dircache/DirCache;)V
            putfield org.eclipse.jgit.api.DiffCommand.newTree:Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;
        21: .line 105
            goto 26
        22: .line 106
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.oldTree:Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;
            ifnonnull 24
        23: .line 107
            aload 0 /* this */
            new org.eclipse.jgit.dircache.DirCacheIterator
            dup
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.repo:Lorg/eclipse/jgit/lib/Repository;
            invokevirtual org.eclipse.jgit.lib.Repository.readDirCache:()Lorg/eclipse/jgit/dircache/DirCache;
            invokespecial org.eclipse.jgit.dircache.DirCacheIterator.<init>:(Lorg/eclipse/jgit/dircache/DirCache;)V
            putfield org.eclipse.jgit.api.DiffCommand.oldTree:Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;
        24: .line 109
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.newTree:Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;
            ifnonnull 26
        25: .line 110
            aload 0 /* this */
            new org.eclipse.jgit.treewalk.FileTreeIterator
            dup
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.repo:Lorg/eclipse/jgit/lib/Repository;
            invokespecial org.eclipse.jgit.treewalk.FileTreeIterator.<init>:(Lorg/eclipse/jgit/lib/Repository;)V
            putfield org.eclipse.jgit.api.DiffCommand.newTree:Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;
        26: .line 114
      StackMap locals:
      StackMap stack:
            aload 3 /* diffFmt */
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.pathFilter:Lorg/eclipse/jgit/treewalk/filter/TreeFilter;
            invokevirtual org.eclipse.jgit.diff.DiffFormatter.setPathFilter:(Lorg/eclipse/jgit/treewalk/filter/TreeFilter;)V
        27: .line 116
            aload 3 /* diffFmt */
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.oldTree:Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.newTree:Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;
            invokevirtual org.eclipse.jgit.diff.DiffFormatter.scan:(Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;)Ljava/util/List;
            astore 4 /* result */
        start local 4 // java.util.List result
        28: .line 117
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.showNameAndStatusOnly:Z
            ifeq 32
        29: .line 118
            aload 4 /* result */
        30: .line 132
            aload 3 /* diffFmt */
            ifnull 31
            aload 3 /* diffFmt */
            invokevirtual org.eclipse.jgit.diff.DiffFormatter.close:()V
        31: .line 118
      StackMap locals: org.eclipse.jgit.api.DiffCommand java.lang.Throwable java.lang.Throwable org.eclipse.jgit.diff.DiffFormatter java.util.List
      StackMap stack: java.util.List
            areturn
        32: .line 120
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.contextLines:I
            iflt 34
        33: .line 121
            aload 3 /* diffFmt */
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.contextLines:I
            invokevirtual org.eclipse.jgit.diff.DiffFormatter.setContext:(I)V
        34: .line 123
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.destinationPrefix:Ljava/lang/String;
            ifnull 36
        35: .line 124
            aload 3 /* diffFmt */
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.destinationPrefix:Ljava/lang/String;
            invokevirtual org.eclipse.jgit.diff.DiffFormatter.setNewPrefix:(Ljava/lang/String;)V
        36: .line 126
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.sourcePrefix:Ljava/lang/String;
            ifnull 38
        37: .line 127
            aload 3 /* diffFmt */
            aload 0 /* this */
            getfield org.eclipse.jgit.api.DiffCommand.sourcePrefix:Ljava/lang/String;
            invokevirtual org.eclipse.jgit.diff.DiffFormatter.setOldPrefix:(Ljava/lang/String;)V
        38: .line 129
      StackMap locals:
      StackMap stack:
            aload 3 /* diffFmt */
            aload 4 /* result */
            invokevirtual org.eclipse.jgit.diff.DiffFormatter.format:(Ljava/util/List;)V
        39: .line 130
            aload 3 /* diffFmt */
            invokevirtual org.eclipse.jgit.diff.DiffFormatter.flush:()V
        40: .line 131
            aload 4 /* result */
        41: .line 132
            aload 3 /* diffFmt */
            ifnull 42
            aload 3 /* diffFmt */
            invokevirtual org.eclipse.jgit.diff.DiffFormatter.close:()V
        42: .line 131
      StackMap locals:
      StackMap stack: java.util.List
            areturn
        end local 4 // java.util.List result
      StackMap locals: org.eclipse.jgit.api.DiffCommand java.lang.Throwable java.lang.Throwable org.eclipse.jgit.diff.DiffFormatter
      StackMap stack: java.lang.Throwable
        43: astore 1
        44: .line 132
            aload 3 /* diffFmt */
            ifnull 45
            aload 3 /* diffFmt */
            invokevirtual org.eclipse.jgit.diff.DiffFormatter.close:()V
        end local 3 // org.eclipse.jgit.diff.DiffFormatter diffFmt
      StackMap locals:
      StackMap stack:
        45: aload 1
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        46: astore 2
            aload 1
            ifnonnull 47
            aload 2
            astore 1
            goto 48
      StackMap locals:
      StackMap stack:
        47: aload 1
            aload 2
            if_acmpeq 48
            aload 1
            aload 2
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        48: aload 1
            athrow
      StackMap locals: org.eclipse.jgit.api.DiffCommand
      StackMap stack: java.io.IOException
        49: astore 1 /* e */
        start local 1 // java.io.IOException e
        50: .line 133
            new org.eclipse.jgit.api.errors.JGitInternalException
            dup
            aload 1 /* e */
            invokevirtual java.io.IOException.getMessage:()Ljava/lang/String;
            aload 1 /* e */
            invokespecial org.eclipse.jgit.api.errors.JGitInternalException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.io.IOException e
        end local 0 // org.eclipse.jgit.api.DiffCommand this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   51     0     this  Lorg/eclipse/jgit/api/DiffCommand;
            2   45     3  diffFmt  Lorg/eclipse/jgit/diff/DiffFormatter;
            7   20     4     head  Lorg/eclipse/jgit/lib/ObjectId;
           10   20     5        p  Lorg/eclipse/jgit/treewalk/CanonicalTreeParser;
           12   15     8   reader  Lorg/eclipse/jgit/lib/ObjectReader;
           28   43     4   result  Ljava/util/List<Lorg/eclipse/jgit/diff/DiffEntry;>;
           50   51     1        e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
          12    13      14  any
          11    16      16  any
           2    30      43  any
          32    41      43  any
           1    31      46  any
          32    42      46  any
          43    46      46  any
           0    31      49  Class java.io.IOException
          32    42      49  Class java.io.IOException
          43    49      49  Class java.io.IOException
    Exceptions:
      throws org.eclipse.jgit.api.errors.GitAPIException
    Signature: ()Ljava/util/List<Lorg/eclipse/jgit/diff/DiffEntry;>;

  public org.eclipse.jgit.api.DiffCommand setCached(boolean);
    descriptor: (Z)Lorg/eclipse/jgit/api/DiffCommand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.DiffCommand this
        start local 1 // boolean cached
         0: .line 145
            aload 0 /* this */
            iload 1 /* cached */
            putfield org.eclipse.jgit.api.DiffCommand.cached:Z
         1: .line 146
            aload 0 /* this */
            areturn
        end local 1 // boolean cached
        end local 0 // org.eclipse.jgit.api.DiffCommand this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jgit/api/DiffCommand;
            0    2     1  cached  Z
    MethodParameters:
        Name  Flags
      cached  

  public org.eclipse.jgit.api.DiffCommand setPathFilter(org.eclipse.jgit.treewalk.filter.TreeFilter);
    descriptor: (Lorg/eclipse/jgit/treewalk/filter/TreeFilter;)Lorg/eclipse/jgit/api/DiffCommand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.DiffCommand this
        start local 1 // org.eclipse.jgit.treewalk.filter.TreeFilter pathFilter
         0: .line 157
            aload 0 /* this */
            aload 1 /* pathFilter */
            putfield org.eclipse.jgit.api.DiffCommand.pathFilter:Lorg/eclipse/jgit/treewalk/filter/TreeFilter;
         1: .line 158
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.jgit.treewalk.filter.TreeFilter pathFilter
        end local 0 // org.eclipse.jgit.api.DiffCommand this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/jgit/api/DiffCommand;
            0    2     1  pathFilter  Lorg/eclipse/jgit/treewalk/filter/TreeFilter;
    MethodParameters:
            Name  Flags
      pathFilter  

  public org.eclipse.jgit.api.DiffCommand setOldTree(org.eclipse.jgit.treewalk.AbstractTreeIterator);
    descriptor: (Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;)Lorg/eclipse/jgit/api/DiffCommand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.DiffCommand this
        start local 1 // org.eclipse.jgit.treewalk.AbstractTreeIterator oldTree
         0: .line 169
            aload 0 /* this */
            aload 1 /* oldTree */
            putfield org.eclipse.jgit.api.DiffCommand.oldTree:Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;
         1: .line 170
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.jgit.treewalk.AbstractTreeIterator oldTree
        end local 0 // org.eclipse.jgit.api.DiffCommand this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/jgit/api/DiffCommand;
            0    2     1  oldTree  Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;
    MethodParameters:
         Name  Flags
      oldTree  

  public org.eclipse.jgit.api.DiffCommand setNewTree(org.eclipse.jgit.treewalk.AbstractTreeIterator);
    descriptor: (Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;)Lorg/eclipse/jgit/api/DiffCommand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.DiffCommand this
        start local 1 // org.eclipse.jgit.treewalk.AbstractTreeIterator newTree
         0: .line 181
            aload 0 /* this */
            aload 1 /* newTree */
            putfield org.eclipse.jgit.api.DiffCommand.newTree:Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;
         1: .line 182
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.jgit.treewalk.AbstractTreeIterator newTree
        end local 0 // org.eclipse.jgit.api.DiffCommand this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/jgit/api/DiffCommand;
            0    2     1  newTree  Lorg/eclipse/jgit/treewalk/AbstractTreeIterator;
    MethodParameters:
         Name  Flags
      newTree  

  public org.eclipse.jgit.api.DiffCommand setShowNameAndStatusOnly(boolean);
    descriptor: (Z)Lorg/eclipse/jgit/api/DiffCommand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.DiffCommand this
        start local 1 // boolean showNameAndStatusOnly
         0: .line 193
            aload 0 /* this */
            iload 1 /* showNameAndStatusOnly */
            putfield org.eclipse.jgit.api.DiffCommand.showNameAndStatusOnly:Z
         1: .line 194
            aload 0 /* this */
            areturn
        end local 1 // boolean showNameAndStatusOnly
        end local 0 // org.eclipse.jgit.api.DiffCommand this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    2     0                   this  Lorg/eclipse/jgit/api/DiffCommand;
            0    2     1  showNameAndStatusOnly  Z
    MethodParameters:
                       Name  Flags
      showNameAndStatusOnly  

  public org.eclipse.jgit.api.DiffCommand setOutputStream(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)Lorg/eclipse/jgit/api/DiffCommand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.DiffCommand this
        start local 1 // java.io.OutputStream out
         0: .line 205
            aload 0 /* this */
            aload 1 /* out */
            putfield org.eclipse.jgit.api.DiffCommand.out:Ljava/io/OutputStream;
         1: .line 206
            aload 0 /* this */
            areturn
        end local 1 // java.io.OutputStream out
        end local 0 // org.eclipse.jgit.api.DiffCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/api/DiffCommand;
            0    2     1   out  Ljava/io/OutputStream;
    MethodParameters:
      Name  Flags
      out   

  public org.eclipse.jgit.api.DiffCommand setContextLines(int);
    descriptor: (I)Lorg/eclipse/jgit/api/DiffCommand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.DiffCommand this
        start local 1 // int contextLines
         0: .line 217
            aload 0 /* this */
            iload 1 /* contextLines */
            putfield org.eclipse.jgit.api.DiffCommand.contextLines:I
         1: .line 218
            aload 0 /* this */
            areturn
        end local 1 // int contextLines
        end local 0 // org.eclipse.jgit.api.DiffCommand this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/eclipse/jgit/api/DiffCommand;
            0    2     1  contextLines  I
    MethodParameters:
              Name  Flags
      contextLines  

  public org.eclipse.jgit.api.DiffCommand setSourcePrefix(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/eclipse/jgit/api/DiffCommand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.DiffCommand this
        start local 1 // java.lang.String sourcePrefix
         0: .line 229
            aload 0 /* this */
            aload 1 /* sourcePrefix */
            putfield org.eclipse.jgit.api.DiffCommand.sourcePrefix:Ljava/lang/String;
         1: .line 230
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String sourcePrefix
        end local 0 // org.eclipse.jgit.api.DiffCommand this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/eclipse/jgit/api/DiffCommand;
            0    2     1  sourcePrefix  Ljava/lang/String;
    MethodParameters:
              Name  Flags
      sourcePrefix  

  public org.eclipse.jgit.api.DiffCommand setDestinationPrefix(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/eclipse/jgit/api/DiffCommand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.DiffCommand this
        start local 1 // java.lang.String destinationPrefix
         0: .line 241
            aload 0 /* this */
            aload 1 /* destinationPrefix */
            putfield org.eclipse.jgit.api.DiffCommand.destinationPrefix:Ljava/lang/String;
         1: .line 242
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String destinationPrefix
        end local 0 // org.eclipse.jgit.api.DiffCommand this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lorg/eclipse/jgit/api/DiffCommand;
            0    2     1  destinationPrefix  Ljava/lang/String;
    MethodParameters:
                   Name  Flags
      destinationPrefix  

  public org.eclipse.jgit.api.DiffCommand setProgressMonitor(org.eclipse.jgit.lib.ProgressMonitor);
    descriptor: (Lorg/eclipse/jgit/lib/ProgressMonitor;)Lorg/eclipse/jgit/api/DiffCommand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.DiffCommand this
        start local 1 // org.eclipse.jgit.lib.ProgressMonitor monitor
         0: .line 255
            aload 1 /* monitor */
            ifnonnull 2
         1: .line 256
            getstatic org.eclipse.jgit.lib.NullProgressMonitor.INSTANCE:Lorg/eclipse/jgit/lib/NullProgressMonitor;
            astore 1 /* monitor */
         2: .line 258
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* monitor */
            putfield org.eclipse.jgit.api.DiffCommand.monitor:Lorg/eclipse/jgit/lib/ProgressMonitor;
         3: .line 259
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.jgit.lib.ProgressMonitor monitor
        end local 0 // org.eclipse.jgit.api.DiffCommand this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/eclipse/jgit/api/DiffCommand;
            0    4     1  monitor  Lorg/eclipse/jgit/lib/ProgressMonitor;
    MethodParameters:
         Name  Flags
      monitor  

  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.DiffCommand.call:()Ljava/util/List;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws org.eclipse.jgit.api.errors.GitAPIException
}
Signature: Lorg/eclipse/jgit/api/GitCommand<Ljava/util/List<Lorg/eclipse/jgit/diff/DiffEntry;>;>;
SourceFile: "DiffCommand.java"