Coverage Report - org.apache.maven.plugin.assembly.AssemblyContext
 
Classes in this File Line Coverage Branch Coverage Complexity
AssemblyContext
N/A
N/A
0
 
 1  
 package org.apache.maven.plugin.assembly;
 2  
 
 3  
 import org.apache.maven.artifact.Artifact;
 4  
 
 5  
 import java.util.Set;
 6  
 
 7  
 public interface AssemblyContext
 8  
 {
 9  
     void setResolvedArtifacts( Set<Artifact> artifacts );
 10  
 
 11  
     Set<Artifact> getResolvedArtifacts();
 12  
 }