View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello 1.0.1 on 2011-06-19 15:23:53,
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: 816603 $ $Date: 2012-05-08 12:53:30 +0000 (Tue, 08 May 2012) $
18   */
19  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          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          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          this.email = email;
70      } //-- 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          this.name = name;
80      } //-- void setName( String )
81  
82  
83  }