Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
DueTo |
|
| 1.0;1 |
1 | /* | |
2 | =================== DO NOT EDIT THIS FILE ==================== | |
3 | Generated by Modello 1.0.1 on 2012-05-10 17:27:31, | |
4 | any modifications will be overwritten. | |
5 | ============================================================== | |
6 | */ | |
7 | ||
8 | package org.apache.maven.plugins.changes.model; | |
9 | ||
10 | /** | |
11 | * | |
12 | * Name and Email of the person to be credited for this | |
13 | * change. This can be used when a patch is submitted by a | |
14 | * non-committer. | |
15 | * | |
16 | * | |
17 | * @version $Revision$ $Date$ | |
18 | */ | |
19 | 9 | public class DueTo |
20 | implements java.io.Serializable | |
21 | { | |
22 | ||
23 | //--------------------------/ | |
24 | //- Class/Member Variables -/ | |
25 | //--------------------------/ | |
26 | ||
27 | /** | |
28 | * Name of the person to be credited for this change. | |
29 | */ | |
30 | private String name; | |
31 | ||
32 | /** | |
33 | * Email of the person to be credited for this change. | |
34 | */ | |
35 | private String email; | |
36 | ||
37 | ||
38 | //-----------/ | |
39 | //- Methods -/ | |
40 | //-----------/ | |
41 | ||
42 | /** | |
43 | * Get email of the person to be credited for this change. | |
44 | * | |
45 | * @return String | |
46 | */ | |
47 | public String getEmail() | |
48 | { | |
49 | 0 | return this.email; |
50 | } //-- String getEmail() | |
51 | ||
52 | /** | |
53 | * Get name of the person to be credited for this change. | |
54 | * | |
55 | * @return String | |
56 | */ | |
57 | public String getName() | |
58 | { | |
59 | 0 | return this.name; |
60 | } //-- String getName() | |
61 | ||
62 | /** | |
63 | * Set email of the person to be credited for this change. | |
64 | * | |
65 | * @param email | |
66 | */ | |
67 | public void setEmail( String email ) | |
68 | { | |
69 | 5 | this.email = email; |
70 | 5 | } //-- void setEmail( String ) |
71 | ||
72 | /** | |
73 | * Set name of the person to be credited for this change. | |
74 | * | |
75 | * @param name | |
76 | */ | |
77 | public void setName( String name ) | |
78 | { | |
79 | 9 | this.name = name; |
80 | 9 | } //-- void setName( String ) |
81 | ||
82 | ||
83 | } |