View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   // Generated by Modello 2.4.0,
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  @SuppressWarnings( "all" )
14  public class TagListXMLComment
15      implements java.io.Serializable
16  {
17  
18        //--------------------------/
19       //- Class/Member Variables -/
20      //--------------------------/
21  
22      /**
23       * Field lineNumber.
24       */
25      private String lineNumber;
26  
27      /**
28       * Field comment.
29       */
30      private String comment;
31  
32  
33        //-----------/
34       //- Methods -/
35      //-----------/
36  
37      /**
38       * Get the comment field.
39       * 
40       * @return String
41       */
42      public String getComment()
43      {
44          return this.comment;
45      } //-- String getComment()
46  
47      /**
48       * Get the lineNumber field.
49       * 
50       * @return String
51       */
52      public String getLineNumber()
53      {
54          return this.lineNumber;
55      } //-- String getLineNumber()
56  
57      /**
58       * Set the comment field.
59       * 
60       * @param comment a comment object.
61       */
62      public void setComment( String comment )
63      {
64          this.comment = comment;
65      } //-- void setComment( String )
66  
67      /**
68       * Set the lineNumber field.
69       * 
70       * @param lineNumber a lineNumber object.
71       */
72      public void setLineNumber( String lineNumber )
73      {
74          this.lineNumber = lineNumber;
75      } //-- void setLineNumber( String )
76  
77  }