Coverage Report - org.apache.maven.plugin.resources.remote.Supplement
 
Classes in this File Line Coverage Branch Coverage Complexity
Supplement
0%
0/4
N/A
0
 
 1  
 /*
 2  
  =================== DO NOT EDIT THIS FILE ====================
 3  
  Generated by Modello 1.1 on 2009-09-14 19:46:40,
 4  
  any modifications will be overwritten.
 5  
  ==============================================================
 6  
  */
 7  
 
 8  
 package org.apache.maven.plugin.resources.remote;
 9  
 
 10  
 /**
 11  
  * A single supplement.
 12  
  * 
 13  
  * @version $Revision: 816508 $ $Date: 2012-05-08 11:20:32 +0000 (Tue, 08 May 2012) $
 14  
  */
 15  
 @SuppressWarnings( "all" )
 16  0
 public class Supplement
 17  
     implements java.io.Serializable
 18  
 {
 19  
 
 20  
       //--------------------------/
 21  
      //- Class/Member Variables -/
 22  
     //--------------------------/
 23  
 
 24  
     /**
 25  
      * Snippets of POM xml files used to supplement the data model.
 26  
      */
 27  
     private Object project;
 28  
 
 29  
 
 30  
       //-----------/
 31  
      //- Methods -/
 32  
     //-----------/
 33  
 
 34  
     /**
 35  
      * Get snippets of POM xml files used to supplement the data
 36  
      * model.
 37  
      * 
 38  
      * @return Object
 39  
      */
 40  
     public Object getProject()
 41  
     {
 42  0
         return this.project;
 43  
     } //-- Object getProject()
 44  
 
 45  
     /**
 46  
      * Set snippets of POM xml files used to supplement the data
 47  
      * model.
 48  
      * 
 49  
      * @param project
 50  
      */
 51  
     public void setProject( Object project )
 52  
     {
 53  0
         this.project = project;
 54  0
     } //-- void setProject( Object )
 55  
 
 56  
 }