View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   // Generated by Modello 1.11,
3   // any modifications will be overwritten.
4   // ==============================================================
5   
6   package org.apache.maven.archetype.metadata;
7   
8   /**
9    * Class ModuleDescriptor.
10   * 
11   * @version $Revision$ $Date$
12   */
13  @SuppressWarnings( "all" )
14  public class ModuleDescriptor
15      extends AbstractArchetypeDescriptor
16      implements java.io.Serializable
17  {
18  
19        //--------------------------/
20       //- Class/Member Variables -/
21      //--------------------------/
22  
23      /**
24       * The module's artifactId.
25       */
26      private String id;
27  
28      /**
29       * The module's directory.
30       */
31      private String dir;
32  
33      /**
34       * The module's name.
35       */
36      private String name;
37  
38  
39        //-----------/
40       //- Methods -/
41      //-----------/
42  
43      /**
44       * Get the module's directory.
45       * 
46       * @return String
47       */
48      public String getDir()
49      {
50          return this.dir;
51      } //-- String getDir()
52  
53      /**
54       * Get the module's artifactId.
55       * 
56       * @return String
57       */
58      public String getId()
59      {
60          return this.id;
61      } //-- String getId()
62  
63      /**
64       * Get the module's name.
65       * 
66       * @return String
67       */
68      public String getName()
69      {
70          return this.name;
71      } //-- String getName()
72  
73      /**
74       * Set the module's directory.
75       * 
76       * @param dir
77       */
78      public void setDir( String dir )
79      {
80          this.dir = dir;
81      } //-- void setDir( String )
82  
83      /**
84       * Set the module's artifactId.
85       * 
86       * @param id
87       */
88      public void setId( String id )
89      {
90          this.id = id;
91      } //-- void setId( String )
92  
93      /**
94       * Set the module's name.
95       * 
96       * @param name
97       */
98      public void setName( String name )
99      {
100         this.name = name;
101     } //-- void setName( String )
102 
103 }