Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
CpdFile |
|
| 1.0;1 |
1 | /* | |
2 | =================== DO NOT EDIT THIS FILE ==================== | |
3 | Generated by Modello 1.4.1 on 2012-02-12 12:12:26, | |
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: 816698 $ $Date: 2012-05-08 15:21:08 +0000 (Tue, 08 May 2012) $ | |
14 | */ | |
15 | @SuppressWarnings( "all" ) | |
16 | 2 | public class CpdFile |
17 | implements java.io.Serializable | |
18 | { | |
19 | ||
20 | //--------------------------/ | |
21 | //- Class/Member Variables -/ | |
22 | //--------------------------/ | |
23 | ||
24 | /** | |
25 | * Field line. | |
26 | */ | |
27 | 2 | 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 | 0 | return this.line; |
47 | } //-- int getLine() | |
48 | ||
49 | /** | |
50 | * Get the path field. | |
51 | * | |
52 | * @return String | |
53 | */ | |
54 | public String getPath() | |
55 | { | |
56 | 0 | 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 | 2 | this.line = line; |
67 | 2 | } //-- void setLine( int ) |
68 | ||
69 | /** | |
70 | * Set the path field. | |
71 | * | |
72 | * @param path | |
73 | */ | |
74 | public void setPath( String path ) | |
75 | { | |
76 | 2 | this.path = path; |
77 | 2 | } //-- void setPath( String ) |
78 | ||
79 | } |