public class org.codehaus.plexus.interpolation.fixed.InterpolationState
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.codehaus.plexus.interpolation.fixed.InterpolationState
  super_class: java.lang.Object
{
  private final java.util.List<java.lang.String> messages;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Ljava/lang/String;>;

  private final java.util.List<java.lang.Throwable> causes;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Ljava/lang/Throwable;>;

  final java.util.Set<java.lang.String> unresolvable;
    descriptor: Ljava/util/Set;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/Set<Ljava/lang/String;>;

  org.codehaus.plexus.interpolation.RecursionInterceptor recursionInterceptor;
    descriptor: Lorg/codehaus/plexus/interpolation/RecursionInterceptor;
    flags: (0x0000) 

  org.codehaus.plexus.interpolation.fixed.FixedStringSearchInterpolator root;
    descriptor: Lorg/codehaus/plexus/interpolation/fixed/FixedStringSearchInterpolator;
    flags: (0x0000) 

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.codehaus.plexus.interpolation.fixed.InterpolationState this
         0: .line 31
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 33
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.codehaus.plexus.interpolation.fixed.InterpolationState.messages:Ljava/util/List;
         2: .line 34
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.codehaus.plexus.interpolation.fixed.InterpolationState.causes:Ljava/util/List;
         3: .line 62
            aload 0 /* this */
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            putfield org.codehaus.plexus.interpolation.fixed.InterpolationState.unresolvable:Ljava/util/Set;
         4: .line 63
            aload 0 /* this */
            new org.codehaus.plexus.interpolation.SimpleRecursionInterceptor
            dup
            invokespecial org.codehaus.plexus.interpolation.SimpleRecursionInterceptor.<init>:()V
            putfield org.codehaus.plexus.interpolation.fixed.InterpolationState.recursionInterceptor:Lorg/codehaus/plexus/interpolation/RecursionInterceptor;
         5: .line 70
            aload 0 /* this */
            aconst_null
            putfield org.codehaus.plexus.interpolation.fixed.InterpolationState.root:Lorg/codehaus/plexus/interpolation/fixed/FixedStringSearchInterpolator;
         6: .line 31
            return
        end local 0 // org.codehaus.plexus.interpolation.fixed.InterpolationState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/codehaus/plexus/interpolation/fixed/InterpolationState;

  public void addFeedback(java.lang.String, java.lang.Throwable);
    descriptor: (Ljava/lang/String;Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.codehaus.plexus.interpolation.fixed.InterpolationState this
        start local 1 // java.lang.String message
        start local 2 // java.lang.Throwable cause
         0: .line 38
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.fixed.InterpolationState.messages:Ljava/util/List;
            aload 1 /* message */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 39
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.fixed.InterpolationState.causes:Ljava/util/List;
            aload 2 /* cause */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         2: .line 40
            return
        end local 2 // java.lang.Throwable cause
        end local 1 // java.lang.String message
        end local 0 // org.codehaus.plexus.interpolation.fixed.InterpolationState this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/codehaus/plexus/interpolation/fixed/InterpolationState;
            0    3     1  message  Ljava/lang/String;
            0    3     2    cause  Ljava/lang/Throwable;
    MethodParameters:
         Name  Flags
      message  
      cause    

  public java.util.List asList();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // org.codehaus.plexus.interpolation.fixed.InterpolationState this
         0: .line 43
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* items */
        start local 1 // java.util.ArrayList items
         1: .line 44
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 8
         3: .line 45
      StackMap locals: java.util.ArrayList int
      StackMap stack:
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.fixed.InterpolationState.messages:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.String
            astore 3 /* msg */
        start local 3 // java.lang.String msg
         4: .line 46
            aload 3 /* msg */
            ifnull 5
            aload 1 /* items */
            aload 3 /* msg */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         5: .line 47
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.fixed.InterpolationState.causes:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.Throwable
            astore 4 /* cause */
        start local 4 // java.lang.Throwable cause
         6: .line 48
            aload 4 /* cause */
            ifnull 7
            aload 1 /* items */
            aload 4 /* cause */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // java.lang.Throwable cause
        end local 3 // java.lang.String msg
         7: .line 44
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 2 /* i */
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.fixed.InterpolationState.messages:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmplt 3
        end local 2 // int i
         9: .line 50
            aload 1 /* items */
            invokevirtual java.util.ArrayList.size:()I
            ifle 10
            aload 1 /* items */
            goto 11
      StackMap locals:
      StackMap stack:
        10: aconst_null
      StackMap locals:
      StackMap stack: java.util.ArrayList
        11: areturn
        end local 1 // java.util.ArrayList items
        end local 0 // org.codehaus.plexus.interpolation.fixed.InterpolationState this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0   this  Lorg/codehaus/plexus/interpolation/fixed/InterpolationState;
            1   12     1  items  Ljava/util/ArrayList<Ljava/lang/Object;>;
            2    9     2      i  I
            4    7     3    msg  Ljava/lang/String;
            6    7     4  cause  Ljava/lang/Throwable;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.codehaus.plexus.interpolation.fixed.InterpolationState this
         0: .line 55
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.fixed.InterpolationState.messages:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         1: .line 56
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.fixed.InterpolationState.causes:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         2: .line 57
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.fixed.InterpolationState.unresolvable:Ljava/util/Set;
            invokeinterface java.util.Set.clear:()V
         3: .line 58
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.fixed.InterpolationState.recursionInterceptor:Lorg/codehaus/plexus/interpolation/RecursionInterceptor;
            invokeinterface org.codehaus.plexus.interpolation.RecursionInterceptor.clear:()V
         4: .line 59
            aload 0 /* this */
            aconst_null
            putfield org.codehaus.plexus.interpolation.fixed.InterpolationState.root:Lorg/codehaus/plexus/interpolation/fixed/FixedStringSearchInterpolator;
         5: .line 60
            return
        end local 0 // org.codehaus.plexus.interpolation.fixed.InterpolationState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/codehaus/plexus/interpolation/fixed/InterpolationState;

  public void setRecursionInterceptor(org.codehaus.plexus.interpolation.RecursionInterceptor);
    descriptor: (Lorg/codehaus/plexus/interpolation/RecursionInterceptor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.codehaus.plexus.interpolation.fixed.InterpolationState this
        start local 1 // org.codehaus.plexus.interpolation.RecursionInterceptor recursionInterceptor
         0: .line 67
            aload 0 /* this */
            aload 1 /* recursionInterceptor */
            putfield org.codehaus.plexus.interpolation.fixed.InterpolationState.recursionInterceptor:Lorg/codehaus/plexus/interpolation/RecursionInterceptor;
         1: .line 68
            return
        end local 1 // org.codehaus.plexus.interpolation.RecursionInterceptor recursionInterceptor
        end local 0 // org.codehaus.plexus.interpolation.fixed.InterpolationState this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lorg/codehaus/plexus/interpolation/fixed/InterpolationState;
            0    2     1  recursionInterceptor  Lorg/codehaus/plexus/interpolation/RecursionInterceptor;
    MethodParameters:
                      Name  Flags
      recursionInterceptor  
}
SourceFile: "InterpolationState.java"