View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   // Generated by Modello 2.3.0,
3   // any modifications will be overwritten.
4   // ==============================================================
5   
6   package org.codehaus.modello.test.features;
7   
8     //---------------------------------/
9    //- Imported classes and packages -/
10  //---------------------------------/
11  
12  import org.codehaus.modello.test.features.other.PackageNameFeature;
13  import org.codehaus.modello.test.features.other.SubInterfaceInPackage;
14  
15  /**
16   * 
17   *         A single action done on the project, during this
18   * release.
19   *       
20   * 
21   * @version $Revision$ $Date$
22   */
23  @SuppressWarnings( "all" )
24  public class Action
25      implements java.io.Serializable
26  {
27  
28        //--------------------------/
29       //- Class/Member Variables -/
30      //--------------------------/
31  
32      /**
33       * 
34       *             A short description of the action taken.
35       *           
36       */
37      private String action;
38  
39      /**
40       * 
41       *             
42       *             <p>Name of developer who committed the
43       * change.</p>
44       *             <p>This can be either the id of the developer,
45       * as specified in the developers section of the pom.xml file,
46       * or the name of the developer. If you generate a changes
47       * report and specify the id of the developer, a link is
48       * created to that developer in the team-list.html page.</p>
49       *             
50       *           
51       */
52      private String dev;
53  
54  
55        //-----------/
56       //- Methods -/
57      //-----------/
58  
59      /**
60       * Get a short description of the action taken.
61       * 
62       * @return String
63       */
64      public String getAction()
65      {
66          return this.action;
67      } //-- String getAction()
68  
69      /**
70       * Get <p>Name of developer who committed the change.</p>
71       *             <p>This can be either the id of the developer,
72       * as specified in the developers section of the pom.xml file,
73       * or the name of the developer. If you generate a changes
74       * report and specify the id of the developer, a link is
75       * created to that developer in the team-list.html page.</p>
76       * 
77       * @return String
78       */
79      public String getDev()
80      {
81          return this.dev;
82      } //-- String getDev()
83  
84      /**
85       * Set a short description of the action taken.
86       * 
87       * @param action a action object.
88       */
89      public void setAction( String action )
90      {
91          this.action = action;
92      } //-- void setAction( String )
93  
94      /**
95       * Set <p>Name of developer who committed the change.</p>
96       *             <p>This can be either the id of the developer,
97       * as specified in the developers section of the pom.xml file,
98       * or the name of the developer. If you generate a changes
99       * report and specify the id of the developer, a link is
100      * created to that developer in the team-list.html page.</p>
101      * 
102      * @param dev a dev object.
103      */
104     public void setDev( String dev )
105     {
106         this.dev = dev;
107     } //-- void setDev( String )
108 
109 }