View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello 1.0.1 on 2011-06-19 15:23:53,
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.maven.plugins.changes.model;
9   
10  /**
11   * 
12   *         A fixed issue.
13   *       
14   * 
15   * @version $Revision: 816603 $ $Date: 2012-05-08 12:53:30 +0000 (Tue, 08 May 2012) $
16   */
17  public class FixedIssue
18      implements java.io.Serializable
19  {
20  
21        //--------------------------/
22       //- Class/Member Variables -/
23      //--------------------------/
24  
25      /**
26       * 
27       *             
28       *               <p>Id of the issue related to this change.
29       * This is the id in your issue tracking system.</p>
30       *               <p>The Changes plugin will generate a URL out
31       * of this id. The URL is constructed using the value of the
32       * issueLinkTemplate parameter.</p>
33       *               <p>See the <a
34       * href="changes-report.html">changes-report mojo</a> for more
35       * details.</p>
36       *             
37       *           
38       */
39      private String issue;
40  
41  
42        //-----------/
43       //- Methods -/
44      //-----------/
45  
46      /**
47       * Get <p>Id of the issue related to this change. This is the
48       * id in your issue tracking system.</p>
49       *               <p>The Changes plugin will generate a URL out
50       * of this id. The URL is constructed using the value of the
51       * issueLinkTemplate parameter.</p>
52       *               <p>See the <a
53       * href="changes-report.html">changes-report mojo</a> for more
54       * details.</p>
55       * 
56       * @return String
57       */
58      public String getIssue()
59      {
60          return this.issue;
61      } //-- String getIssue()
62  
63      /**
64       * Set <p>Id of the issue related to this change. This is the
65       * id in your issue tracking system.</p>
66       *               <p>The Changes plugin will generate a URL out
67       * of this id. The URL is constructed using the value of the
68       * issueLinkTemplate parameter.</p>
69       *               <p>See the <a
70       * href="changes-report.html">changes-report mojo</a> for more
71       * details.</p>
72       * 
73       * @param issue
74       */
75      public void setIssue( String issue )
76      {
77          this.issue = issue;
78      } //-- void setIssue( String )
79  
80  
81  }