public class org.eclipse.compare.patch.PatchConfiguration
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.compare.patch.PatchConfiguration
  super_class: java.lang.Object
{
  private int fStripPrefixSegments;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

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

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

  private java.util.HashMap<java.lang.String, java.lang.Object> properties;
    descriptor: Ljava/util/HashMap;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/HashMap<Ljava/lang/String;Ljava/lang/Object;>;

  private java.util.List<org.eclipse.compare.patch.IHunkFilter> hunkFilters;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lorg/eclipse/compare/patch/IHunkFilter;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.compare.patch.PatchConfiguration this
         0: .line 27
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 31
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.compare.patch.PatchConfiguration.fIgnoreWhitespace:Z
         2: .line 32
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.compare.patch.PatchConfiguration.fReverse:Z
         3: .line 33
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield org.eclipse.compare.patch.PatchConfiguration.properties:Ljava/util/HashMap;
         4: .line 34
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.eclipse.compare.patch.PatchConfiguration.hunkFilters:Ljava/util/List;
         5: .line 27
            return
        end local 0 // org.eclipse.compare.patch.PatchConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/compare/patch/PatchConfiguration;

  public boolean isReversed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.compare.patch.PatchConfiguration this
         0: .line 41
            aload 0 /* this */
            getfield org.eclipse.compare.patch.PatchConfiguration.fReverse:Z
            ireturn
        end local 0 // org.eclipse.compare.patch.PatchConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/compare/patch/PatchConfiguration;

  public void setReversed(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.compare.patch.PatchConfiguration this
        start local 1 // boolean reversed
         0: .line 49
            aload 0 /* this */
            iload 1 /* reversed */
            putfield org.eclipse.compare.patch.PatchConfiguration.fReverse:Z
         1: .line 50
            return
        end local 1 // boolean reversed
        end local 0 // org.eclipse.compare.patch.PatchConfiguration this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/compare/patch/PatchConfiguration;
            0    2     1  reversed  Z
    MethodParameters:
          Name  Flags
      reversed  

  public int getPrefixSegmentStripCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.compare.patch.PatchConfiguration this
         0: .line 59
            aload 0 /* this */
            getfield org.eclipse.compare.patch.PatchConfiguration.fStripPrefixSegments:I
            ireturn
        end local 0 // org.eclipse.compare.patch.PatchConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/compare/patch/PatchConfiguration;

  public void setPrefixSegmentStripCount(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.compare.patch.PatchConfiguration this
        start local 1 // int stripCount
         0: .line 69
            aload 0 /* this */
            iload 1 /* stripCount */
            putfield org.eclipse.compare.patch.PatchConfiguration.fStripPrefixSegments:I
         1: .line 70
            return
        end local 1 // int stripCount
        end local 0 // org.eclipse.compare.patch.PatchConfiguration this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/compare/patch/PatchConfiguration;
            0    2     1  stripCount  I
    MethodParameters:
            Name  Flags
      stripCount  

  public int getFuzz();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.compare.patch.PatchConfiguration this
         0: .line 80
            aload 0 /* this */
            getfield org.eclipse.compare.patch.PatchConfiguration.fFuzz:I
            ireturn
        end local 0 // org.eclipse.compare.patch.PatchConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/compare/patch/PatchConfiguration;

  public void setFuzz(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.compare.patch.PatchConfiguration this
        start local 1 // int fuzz
         0: .line 88
            aload 0 /* this */
            iload 1 /* fuzz */
            putfield org.eclipse.compare.patch.PatchConfiguration.fFuzz:I
         1: .line 89
            return
        end local 1 // int fuzz
        end local 0 // org.eclipse.compare.patch.PatchConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/compare/patch/PatchConfiguration;
            0    2     1  fuzz  I
    MethodParameters:
      Name  Flags
      fuzz  

  public boolean isIgnoreWhitespace();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.compare.patch.PatchConfiguration this
         0: .line 96
            aload 0 /* this */
            getfield org.eclipse.compare.patch.PatchConfiguration.fIgnoreWhitespace:Z
            ireturn
        end local 0 // org.eclipse.compare.patch.PatchConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/compare/patch/PatchConfiguration;

  public void setIgnoreWhitespace(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.compare.patch.PatchConfiguration this
        start local 1 // boolean ignoreWhitespace
         0: .line 104
            aload 0 /* this */
            iload 1 /* ignoreWhitespace */
            putfield org.eclipse.compare.patch.PatchConfiguration.fIgnoreWhitespace:Z
         1: .line 105
            return
        end local 1 // boolean ignoreWhitespace
        end local 0 // org.eclipse.compare.patch.PatchConfiguration this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lorg/eclipse/compare/patch/PatchConfiguration;
            0    2     1  ignoreWhitespace  Z
    MethodParameters:
                  Name  Flags
      ignoreWhitespace  

  public java.lang.Object getProperty(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.compare.patch.PatchConfiguration this
        start local 1 // java.lang.String key
         0: .line 115
            aload 0 /* this */
            getfield org.eclipse.compare.patch.PatchConfiguration.properties:Ljava/util/HashMap;
            aload 1 /* key */
            invokevirtual java.util.HashMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.String key
        end local 0 // org.eclipse.compare.patch.PatchConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/compare/patch/PatchConfiguration;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public void setProperty(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.compare.patch.PatchConfiguration this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Object value
         0: .line 124
            aload 0 /* this */
            getfield org.eclipse.compare.patch.PatchConfiguration.properties:Ljava/util/HashMap;
            aload 1 /* key */
            aload 2 /* value */
            invokevirtual java.util.HashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 125
            return
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String key
        end local 0 // org.eclipse.compare.patch.PatchConfiguration this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/eclipse/compare/patch/PatchConfiguration;
            0    2     1    key  Ljava/lang/String;
            0    2     2  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      key    
      value  

  public void addHunkFilter(org.eclipse.compare.patch.IHunkFilter);
    descriptor: (Lorg/eclipse/compare/patch/IHunkFilter;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.compare.patch.PatchConfiguration this
        start local 1 // org.eclipse.compare.patch.IHunkFilter filter
         0: .line 134
            aload 0 /* this */
            getfield org.eclipse.compare.patch.PatchConfiguration.hunkFilters:Ljava/util/List;
            aload 1 /* filter */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 135
            return
        end local 1 // org.eclipse.compare.patch.IHunkFilter filter
        end local 0 // org.eclipse.compare.patch.PatchConfiguration this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/compare/patch/PatchConfiguration;
            0    2     1  filter  Lorg/eclipse/compare/patch/IHunkFilter;
    MethodParameters:
        Name  Flags
      filter  

  public void removeHunkFilter(org.eclipse.compare.patch.IHunkFilter);
    descriptor: (Lorg/eclipse/compare/patch/IHunkFilter;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.compare.patch.PatchConfiguration this
        start local 1 // org.eclipse.compare.patch.IHunkFilter filter
         0: .line 144
            aload 0 /* this */
            getfield org.eclipse.compare.patch.PatchConfiguration.hunkFilters:Ljava/util/List;
            aload 1 /* filter */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            pop
         1: .line 145
            return
        end local 1 // org.eclipse.compare.patch.IHunkFilter filter
        end local 0 // org.eclipse.compare.patch.PatchConfiguration this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/compare/patch/PatchConfiguration;
            0    2     1  filter  Lorg/eclipse/compare/patch/IHunkFilter;
    MethodParameters:
        Name  Flags
      filter  

  public org.eclipse.compare.patch.IHunkFilter[] getHunkFilters();
    descriptor: ()[Lorg/eclipse/compare/patch/IHunkFilter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.compare.patch.PatchConfiguration this
         0: .line 155
            aload 0 /* this */
            getfield org.eclipse.compare.patch.PatchConfiguration.hunkFilters:Ljava/util/List;
            aload 0 /* this */
            getfield org.eclipse.compare.patch.PatchConfiguration.hunkFilters:Ljava/util/List;
         1: .line 156
            invokeinterface java.util.List.size:()I
            anewarray org.eclipse.compare.patch.IHunkFilter
         2: .line 155
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast org.eclipse.compare.patch.IHunkFilter[]
            areturn
        end local 0 // org.eclipse.compare.patch.PatchConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/compare/patch/PatchConfiguration;
}
SourceFile: "PatchConfiguration.java"