View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello 1.4.1 on 2013-03-04 22:04:56,
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.maven.plugin.pmd.model;
9   
10  /**
11   * Class CpdFile.
12   * 
13   * @version $Revision: 853015 $ $Date: 2013-03-04 21:10:54 +0000 (Mon, 04 Mar 2013) $
14   */
15  @SuppressWarnings( "all" )
16  public class CpdFile
17      implements java.io.Serializable
18  {
19  
20        //--------------------------/
21       //- Class/Member Variables -/
22      //--------------------------/
23  
24      /**
25       * Field line.
26       */
27      private int line = 0;
28  
29      /**
30       * Field path.
31       */
32      private String path;
33  
34  
35        //-----------/
36       //- Methods -/
37      //-----------/
38  
39      /**
40       * Get the line field.
41       * 
42       * @return int
43       */
44      public int getLine()
45      {
46          return this.line;
47      } //-- int getLine()
48  
49      /**
50       * Get the path field.
51       * 
52       * @return String
53       */
54      public String getPath()
55      {
56          return this.path;
57      } //-- String getPath()
58  
59      /**
60       * Set the line field.
61       * 
62       * @param line
63       */
64      public void setLine( int line )
65      {
66          this.line = line;
67      } //-- void setLine( int )
68  
69      /**
70       * Set the path field.
71       * 
72       * @param path
73       */
74      public void setPath( String path )
75      {
76          this.path = path;
77      } //-- void setPath( String )
78  
79  }