Coverage Report - org.apache.maven.plugin.javadoc.options.ResourcesArtifact
 
Classes in this File Line Coverage Branch Coverage Complexity
ResourcesArtifact
0 %
0/5
N/A
1
 
 1  
 /*
 2  
  * $Id: org.apache.maven.plugin.javadoc.options.ResourcesArtifact.html 829389 2012-08-19 17:23:07Z hboutemy $
 3  
  */
 4  
 
 5  
 package org.apache.maven.plugin.javadoc.options;
 6  
 
 7  
   //---------------------------------/
 8  
  //- Imported classes and packages -/
 9  
 //---------------------------------/
 10  
 
 11  
 import java.util.Date;
 12  
 
 13  
 /**
 14  
  * A artifact containing resources.
 15  
  * 
 16  
  * @version $Revision: 829389 $ $Date: 2012-08-19 17:23:07 +0000 (Sun, 19 Aug 2012) $
 17  
  */
 18  0
 public class ResourcesArtifact extends JavadocPathArtifact 
 19  
 implements java.io.Serializable
 20  
 {
 21  
 
 22  
 
 23  0
     private String modelEncoding = "UTF-8";
 24  
 
 25  
     /**
 26  
      * Set an encoding used for reading/writing the model.
 27  
      *
 28  
      * @param modelEncoding the encoding used when reading/writing the model.
 29  
      */
 30  
     public void setModelEncoding( String modelEncoding )
 31  
     {
 32  0
         this.modelEncoding = modelEncoding;
 33  0
     }
 34  
 
 35  
     /**
 36  
      * @return the current encoding used when reading/writing this model.
 37  
      */
 38  
     public String getModelEncoding()
 39  
     {
 40  0
         return modelEncoding;
 41  
     }
 42  
 }