Coverage Report - org.apache.maven.shared.io.location.ArtifactLocation
 
Classes in this File Line Coverage Branch Coverage Complexity
ArtifactLocation
100%
3/3
N/A
1
 
 1  
 package org.apache.maven.shared.io.location;
 2  
 
 3  
 import org.apache.maven.artifact.Artifact;
 4  
 
 5  
 public class ArtifactLocation
 6  
     extends FileLocation
 7  
 {
 8  
 
 9  
     public ArtifactLocation( Artifact artifact, String specification )
 10  
     {
 11  8
         super( specification );
 12  8
         setFile( artifact.getFile() );
 13  8
     }
 14  
 
 15  
 }