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