View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   // Generated by Modello 2.1.2,
3   // any modifications will be overwritten.
4   // ==============================================================
5   
6   package org.apache.maven.buildcache.xml.config;
7   
8   /**
9    * Class ProjectVersioning.
10   * 
11   * @version $Revision$ $Date$
12   */
13  @SuppressWarnings( "all" )
14  public class ProjectVersioning
15      implements java.io.Serializable
16  {
17  
18        //--------------------------/
19       //- Class/Member Variables -/
20      //--------------------------/
21  
22      /**
23       * Determines whether version in metadata must be changed
24       * according to building project version.
25       */
26      private boolean adjustMetaInf = false;
27  
28  
29        //-----------/
30       //- Methods -/
31      //-----------/
32  
33      /**
34       * Get determines whether version in metadata must be changed
35       * according to building project version.
36       * 
37       * @return boolean
38       */
39      public boolean isAdjustMetaInf()
40      {
41          return this.adjustMetaInf;
42      } //-- boolean isAdjustMetaInf()
43  
44      /**
45       * Set determines whether version in metadata must be changed
46       * according to building project version.
47       * 
48       * @param adjustMetaInf a adjustMetaInf object.
49       */
50      public void setAdjustMetaInf( boolean adjustMetaInf )
51      {
52          this.adjustMetaInf = adjustMetaInf;
53      } //-- void setAdjustMetaInf( boolean )
54  
55  }