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.codehaus.mojo.taglist.output;
7   
8   /**
9    * The comment a tag was found within.
10   * 
11   * @version $Revision$ $Date$
12   */
13  public class TagListXMLComment
14      implements java.io.Serializable
15  {
16  
17        //--------------------------/
18       //- Class/Member Variables -/
19      //--------------------------/
20  
21      /**
22       * Field lineNumber.
23       */
24      private String lineNumber;
25  
26      /**
27       * Field comment.
28       */
29      private String comment;
30  
31  
32        //-----------/
33       //- Methods -/
34      //-----------/
35  
36      /**
37       * Get the comment field.
38       * 
39       * @return String
40       */
41      public String getComment()
42      {
43          return this.comment;
44      } //-- String getComment()
45  
46      /**
47       * Get the lineNumber field.
48       * 
49       * @return String
50       */
51      public String getLineNumber()
52      {
53          return this.lineNumber;
54      } //-- String getLineNumber()
55  
56      /**
57       * Set the comment field.
58       * 
59       * @param comment
60       */
61      public void setComment( String comment )
62      {
63          this.comment = comment;
64      } //-- void setComment( String )
65  
66      /**
67       * Set the lineNumber field.
68       * 
69       * @param lineNumber
70       */
71      public void setLineNumber( String lineNumber )
72      {
73          this.lineNumber = lineNumber;
74      } //-- void setLineNumber( String )
75  
76  }