Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Exclusion |
|
| 1.0;1 |
1 | /* | |
2 | =================== DO NOT EDIT THIS FILE ==================== | |
3 | Generated by Modello 1.0.1 on 2009-03-28 16:09:53, | |
4 | any modifications will be overwritten. | |
5 | ============================================================== | |
6 | */ | |
7 | ||
8 | package org.apache.maven.model; | |
9 | ||
10 | /** | |
11 | * | |
12 | * | |
13 | * The <code><exclusion></code> element contains | |
14 | * informations required to exclude | |
15 | * an artifact to the project. | |
16 | * | |
17 | * | |
18 | * | |
19 | * @version $Revision$ $Date$ | |
20 | */ | |
21 | 4 | public class Exclusion |
22 | implements java.io.Serializable | |
23 | { | |
24 | ||
25 | //--------------------------/ | |
26 | //- Class/Member Variables -/ | |
27 | //--------------------------/ | |
28 | ||
29 | /** | |
30 | * The artifact ID of the project to exclude. | |
31 | */ | |
32 | private String artifactId; | |
33 | ||
34 | /** | |
35 | * The group ID of the project to exclude. | |
36 | */ | |
37 | private String groupId; | |
38 | ||
39 | ||
40 | //-----------/ | |
41 | //- Methods -/ | |
42 | //-----------/ | |
43 | ||
44 | /** | |
45 | * Get the artifact ID of the project to exclude. | |
46 | * | |
47 | * @return String | |
48 | */ | |
49 | public String getArtifactId() | |
50 | { | |
51 | 0 | return this.artifactId; |
52 | } //-- String getArtifactId() | |
53 | ||
54 | /** | |
55 | * Get the group ID of the project to exclude. | |
56 | * | |
57 | * @return String | |
58 | */ | |
59 | public String getGroupId() | |
60 | { | |
61 | 0 | return this.groupId; |
62 | } //-- String getGroupId() | |
63 | ||
64 | /** | |
65 | * Set the artifact ID of the project to exclude. | |
66 | * | |
67 | * @param artifactId | |
68 | */ | |
69 | public void setArtifactId( String artifactId ) | |
70 | { | |
71 | 0 | this.artifactId = artifactId; |
72 | 0 | } //-- void setArtifactId( String ) |
73 | ||
74 | /** | |
75 | * Set the group ID of the project to exclude. | |
76 | * | |
77 | * @param groupId | |
78 | */ | |
79 | public void setGroupId( String groupId ) | |
80 | { | |
81 | 0 | this.groupId = groupId; |
82 | 0 | } //-- void setGroupId( String ) |
83 | ||
84 | ||
85 | } |