Coverage Report - org.apache.maven.model.Prerequisites
 
Classes in this File Line Coverage Branch Coverage Complexity
Prerequisites
40 %
2/5
N/A
1
 
 1  
 /*
 2  
  =================== DO NOT EDIT THIS FILE ====================
 3  
  Generated by Modello 1.0.1 on 2009-09-09 03:04:48,
 4  
  any modifications will be overwritten.
 5  
  ==============================================================
 6  
  */
 7  
 
 8  
 package org.apache.maven.model;
 9  
 
 10  
 /**
 11  
  * Describes the prerequisites a project can have.
 12  
  * 
 13  
  * @version $Revision$ $Date$
 14  
  */
 15  6
 public class Prerequisites
 16  
     implements java.io.Serializable
 17  
 {
 18  
 
 19  
       //--------------------------/
 20  
      //- Class/Member Variables -/
 21  
     //--------------------------/
 22  
 
 23  
     /**
 24  
      * The minimum version of Maven required to build the project,
 25  
      * or to use this
 26  
      *             plugin.
 27  
      */
 28  6
     private String maven = "2.0";
 29  
 
 30  
 
 31  
       //-----------/
 32  
      //- Methods -/
 33  
     //-----------/
 34  
 
 35  
     /**
 36  
      * Get the minimum version of Maven required to build the
 37  
      * project, or to use this
 38  
      *             plugin.
 39  
      * 
 40  
      * @return String
 41  
      */
 42  
     public String getMaven()
 43  
     {
 44  0
         return this.maven;
 45  
     } //-- String getMaven()
 46  
 
 47  
     /**
 48  
      * Set the minimum version of Maven required to build the
 49  
      * project, or to use this
 50  
      *             plugin.
 51  
      * 
 52  
      * @param maven
 53  
      */
 54  
     public void setMaven( String maven )
 55  
     {
 56  0
         this.maven = maven;
 57  0
     } //-- void setMaven( String )
 58  
 
 59  
 
 60  
 }