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

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

  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 java.util.List<java.lang.Exception> collectExceptions;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Ljava/lang/Exception;>;

  private java.util.List<org.eclipse.aether.resolution.ArtifactResult> artifactResults;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lorg/eclipse/aether/resolution/ArtifactResult;>;

  public void <init>(org.eclipse.aether.resolution.DependencyRequest);
    descriptor: (Lorg/eclipse/aether/resolution/DependencyRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.aether.resolution.DependencyResult this
        start local 1 // org.eclipse.aether.resolution.DependencyRequest request
         0: .line 53
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 55
            aload 0 /* this */
            aload 1 /* request */
            ldc "dependency request cannot be null"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast org.eclipse.aether.resolution.DependencyRequest
            putfield org.eclipse.aether.resolution.DependencyResult.request:Lorg/eclipse/aether/resolution/DependencyRequest;
         2: .line 56
            aload 0 /* this */
            aload 1 /* request */
            invokevirtual org.eclipse.aether.resolution.DependencyRequest.getRoot:()Lorg/eclipse/aether/graph/DependencyNode;
            putfield org.eclipse.aether.resolution.DependencyResult.root:Lorg/eclipse/aether/graph/DependencyNode;
         3: .line 57
            aload 0 /* this */
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            putfield org.eclipse.aether.resolution.DependencyResult.cycles:Ljava/util/List;
         4: .line 58
            aload 0 /* this */
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            putfield org.eclipse.aether.resolution.DependencyResult.collectExceptions:Ljava/util/List;
         5: .line 59
            aload 0 /* this */
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            putfield org.eclipse.aether.resolution.DependencyResult.artifactResults:Ljava/util/List;
         6: .line 60
            return
        end local 1 // org.eclipse.aether.resolution.DependencyRequest request
        end local 0 // org.eclipse.aether.resolution.DependencyResult this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/eclipse/aether/resolution/DependencyResult;
            0    7     1  request  Lorg/eclipse/aether/resolution/DependencyRequest;
    MethodParameters:
         Name  Flags
      request  

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

  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.resolution.DependencyResult this
         0: .line 80
            aload 0 /* this */
            getfield org.eclipse.aether.resolution.DependencyResult.root:Lorg/eclipse/aether/graph/DependencyNode;
            areturn
        end local 0 // org.eclipse.aether.resolution.DependencyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/aether/resolution/DependencyResult;

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

  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.resolution.DependencyResult this
         0: .line 105
            aload 0 /* this */
            getfield org.eclipse.aether.resolution.DependencyResult.cycles:Ljava/util/List;
            areturn
        end local 0 // org.eclipse.aether.resolution.DependencyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/aether/resolution/DependencyResult;
    Signature: ()Ljava/util/List<Lorg/eclipse/aether/graph/DependencyCycle;>;

  public org.eclipse.aether.resolution.DependencyResult setCycles(java.util.List<org.eclipse.aether.graph.DependencyCycle>);
    descriptor: (Ljava/util/List;)Lorg/eclipse/aether/resolution/DependencyResult;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.aether.resolution.DependencyResult this
        start local 1 // java.util.List cycles
         0: .line 116
            aload 1 /* cycles */
            ifnonnull 3
         1: .line 118
            aload 0 /* this */
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            putfield org.eclipse.aether.resolution.DependencyResult.cycles:Ljava/util/List;
         2: .line 119
            goto 4
         3: .line 122
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* cycles */
            putfield org.eclipse.aether.resolution.DependencyResult.cycles:Ljava/util/List;
         4: .line 124
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // java.util.List cycles
        end local 0 // org.eclipse.aether.resolution.DependencyResult this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/aether/resolution/DependencyResult;
            0    5     1  cycles  Ljava/util/List<Lorg/eclipse/aether/graph/DependencyCycle;>;
    Signature: (Ljava/util/List<Lorg/eclipse/aether/graph/DependencyCycle;>;)Lorg/eclipse/aether/resolution/DependencyResult;
    MethodParameters:
        Name  Flags
      cycles  

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

  public org.eclipse.aether.resolution.DependencyResult setCollectExceptions(java.util.List<java.lang.Exception>);
    descriptor: (Ljava/util/List;)Lorg/eclipse/aether/resolution/DependencyResult;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.aether.resolution.DependencyResult this
        start local 1 // java.util.List exceptions
         0: .line 145
            aload 1 /* exceptions */
            ifnonnull 3
         1: .line 147
            aload 0 /* this */
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            putfield org.eclipse.aether.resolution.DependencyResult.collectExceptions:Ljava/util/List;
         2: .line 148
            goto 4
         3: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* exceptions */
            putfield org.eclipse.aether.resolution.DependencyResult.collectExceptions:Ljava/util/List;
         4: .line 153
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // java.util.List exceptions
        end local 0 // org.eclipse.aether.resolution.DependencyResult this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/eclipse/aether/resolution/DependencyResult;
            0    5     1  exceptions  Ljava/util/List<Ljava/lang/Exception;>;
    Signature: (Ljava/util/List<Ljava/lang/Exception;>;)Lorg/eclipse/aether/resolution/DependencyResult;
    MethodParameters:
            Name  Flags
      exceptions  

  public java.util.List<org.eclipse.aether.resolution.ArtifactResult> getArtifactResults();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.aether.resolution.DependencyResult this
         0: .line 163
            aload 0 /* this */
            getfield org.eclipse.aether.resolution.DependencyResult.artifactResults:Ljava/util/List;
            areturn
        end local 0 // org.eclipse.aether.resolution.DependencyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/aether/resolution/DependencyResult;
    Signature: ()Ljava/util/List<Lorg/eclipse/aether/resolution/ArtifactResult;>;

  public org.eclipse.aether.resolution.DependencyResult setArtifactResults(java.util.List<org.eclipse.aether.resolution.ArtifactResult>);
    descriptor: (Ljava/util/List;)Lorg/eclipse/aether/resolution/DependencyResult;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.aether.resolution.DependencyResult this
        start local 1 // java.util.List results
         0: .line 174
            aload 1 /* results */
            ifnonnull 3
         1: .line 176
            aload 0 /* this */
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            putfield org.eclipse.aether.resolution.DependencyResult.artifactResults:Ljava/util/List;
         2: .line 177
            goto 4
         3: .line 180
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* results */
            putfield org.eclipse.aether.resolution.DependencyResult.artifactResults:Ljava/util/List;
         4: .line 182
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // java.util.List results
        end local 0 // org.eclipse.aether.resolution.DependencyResult this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/eclipse/aether/resolution/DependencyResult;
            0    5     1  results  Ljava/util/List<Lorg/eclipse/aether/resolution/ArtifactResult;>;
    Signature: (Ljava/util/List<Lorg/eclipse/aether/resolution/ArtifactResult;>;)Lorg/eclipse/aether/resolution/DependencyResult;
    MethodParameters:
         Name  Flags
      results  

  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.resolution.DependencyResult this
         0: .line 188
            aload 0 /* this */
            getfield org.eclipse.aether.resolution.DependencyResult.artifactResults:Ljava/util/List;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.aether.resolution.DependencyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/aether/resolution/DependencyResult;
}
SourceFile: "DependencyResult.java"