public final class org.eclipse.aether.collection.CollectResult
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.aether.collection.CollectResult
  super_class: java.lang.Object
{
  private final org.eclipse.aether.collection.CollectRequest request;
    descriptor: Lorg/eclipse/aether/collection/CollectRequest;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.util.List<java.lang.Exception> exceptions;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Ljava/lang/Exception;>;

  private java.util.List<org.eclipse.aether.graph.DependencyCycle> cycles;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lorg/eclipse/aether/graph/DependencyCycle;>;

  private org.eclipse.aether.graph.DependencyNode root;
    descriptor: Lorg/eclipse/aether/graph/DependencyNode;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(org.eclipse.aether.collection.CollectRequest);
    descriptor: (Lorg/eclipse/aether/collection/CollectRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.aether.collection.CollectResult this
        start local 1 // org.eclipse.aether.collection.CollectRequest request
         0: .line 52
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 54
            aload 0 /* this */
            aload 1 /* request */
            ldc "dependency collection request cannot be null"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast org.eclipse.aether.collection.CollectRequest
            putfield org.eclipse.aether.collection.CollectResult.request:Lorg/eclipse/aether/collection/CollectRequest;
         2: .line 55
            aload 0 /* this */
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            putfield org.eclipse.aether.collection.CollectResult.exceptions:Ljava/util/List;
         3: .line 56
            aload 0 /* this */
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            putfield org.eclipse.aether.collection.CollectResult.cycles:Ljava/util/List;
         4: .line 57
            return
        end local 1 // org.eclipse.aether.collection.CollectRequest request
        end local 0 // org.eclipse.aether.collection.CollectResult this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/eclipse/aether/collection/CollectResult;
            0    5     1  request  Lorg/eclipse/aether/collection/CollectRequest;
    MethodParameters:
         Name  Flags
      request  

  public org.eclipse.aether.collection.CollectRequest getRequest();
    descriptor: ()Lorg/eclipse/aether/collection/CollectRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.aether.collection.CollectResult this
         0: .line 66
            aload 0 /* this */
            getfield org.eclipse.aether.collection.CollectResult.request:Lorg/eclipse/aether/collection/CollectRequest;
            areturn
        end local 0 // org.eclipse.aether.collection.CollectResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/aether/collection/CollectResult;

  public java.util.List<java.lang.Exception> getExceptions();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.aether.collection.CollectResult this
         0: .line 76
            aload 0 /* this */
            getfield org.eclipse.aether.collection.CollectResult.exceptions:Ljava/util/List;
            areturn
        end local 0 // org.eclipse.aether.collection.CollectResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/aether/collection/CollectResult;
    Signature: ()Ljava/util/List<Ljava/lang/Exception;>;

  public org.eclipse.aether.collection.CollectResult addException(java.lang.Exception);
    descriptor: (Ljava/lang/Exception;)Lorg/eclipse/aether/collection/CollectResult;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.aether.collection.CollectResult this
        start local 1 // java.lang.Exception exception
         0: .line 87
            aload 1 /* exception */
            ifnull 4
         1: .line 89
            aload 0 /* this */
            getfield org.eclipse.aether.collection.CollectResult.exceptions:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 3
         2: .line 91
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.eclipse.aether.collection.CollectResult.exceptions:Ljava/util/List;
         3: .line 93
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.aether.collection.CollectResult.exceptions:Ljava/util/List;
            aload 1 /* exception */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         4: .line 95
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Exception exception
        end local 0 // org.eclipse.aether.collection.CollectResult this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/eclipse/aether/collection/CollectResult;
            0    5     1  exception  Ljava/lang/Exception;
    MethodParameters:
           Name  Flags
      exception  

  public java.util.List<org.eclipse.aether.graph.DependencyCycle> getCycles();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.aether.collection.CollectResult this
         0: .line 105
            aload 0 /* this */
            getfield org.eclipse.aether.collection.CollectResult.cycles:Ljava/util/List;
            areturn
        end local 0 // org.eclipse.aether.collection.CollectResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/aether/collection/CollectResult;
    Signature: ()Ljava/util/List<Lorg/eclipse/aether/graph/DependencyCycle;>;

  public org.eclipse.aether.collection.CollectResult addCycle(org.eclipse.aether.graph.DependencyCycle);
    descriptor: (Lorg/eclipse/aether/graph/DependencyCycle;)Lorg/eclipse/aether/collection/CollectResult;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.aether.collection.CollectResult this
        start local 1 // org.eclipse.aether.graph.DependencyCycle cycle
         0: .line 116
            aload 1 /* cycle */
            ifnull 4
         1: .line 118
            aload 0 /* this */
            getfield org.eclipse.aether.collection.CollectResult.cycles:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 3
         2: .line 120
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.eclipse.aether.collection.CollectResult.cycles:Ljava/util/List;
         3: .line 122
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.aether.collection.CollectResult.cycles:Ljava/util/List;
            aload 1 /* cycle */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         4: .line 124
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.aether.graph.DependencyCycle cycle
        end local 0 // org.eclipse.aether.collection.CollectResult this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/eclipse/aether/collection/CollectResult;
            0    5     1  cycle  Lorg/eclipse/aether/graph/DependencyCycle;
    MethodParameters:
       Name  Flags
      cycle  

  public org.eclipse.aether.graph.DependencyNode getRoot();
    descriptor: ()Lorg/eclipse/aether/graph/DependencyNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.aether.collection.CollectResult this
         0: .line 134
            aload 0 /* this */
            getfield org.eclipse.aether.collection.CollectResult.root:Lorg/eclipse/aether/graph/DependencyNode;
            areturn
        end local 0 // org.eclipse.aether.collection.CollectResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/aether/collection/CollectResult;

  public org.eclipse.aether.collection.CollectResult setRoot(org.eclipse.aether.graph.DependencyNode);
    descriptor: (Lorg/eclipse/aether/graph/DependencyNode;)Lorg/eclipse/aether/collection/CollectResult;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.aether.collection.CollectResult this
        start local 1 // org.eclipse.aether.graph.DependencyNode root
         0: .line 145
            aload 0 /* this */
            aload 1 /* root */
            putfield org.eclipse.aether.collection.CollectResult.root:Lorg/eclipse/aether/graph/DependencyNode;
         1: .line 146
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.aether.graph.DependencyNode root
        end local 0 // org.eclipse.aether.collection.CollectResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/aether/collection/CollectResult;
            0    2     1  root  Lorg/eclipse/aether/graph/DependencyNode;
    MethodParameters:
      Name  Flags
      root  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.aether.collection.CollectResult this
         0: .line 152
            aload 0 /* this */
            invokevirtual org.eclipse.aether.collection.CollectResult.getRoot:()Lorg/eclipse/aether/graph/DependencyNode;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.aether.collection.CollectResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/aether/collection/CollectResult;
}
SourceFile: "CollectResult.java"