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   *         A description of the author page.
13   *       
14   * 
15   * @version $Revision: 816603 $ $Date: 2012-05-08 12:53:30 +0000 (Tue, 08 May 2012) $
16   */
17  public class Author
18      implements java.io.Serializable
19  {
20  
21        //--------------------------/
22       //- Class/Member Variables -/
23      //--------------------------/
24  
25      /**
26       * 
27       *             The page author name.
28       *           
29       */
30      private String name;
31  
32      /**
33       * 
34       *             The page author email.
35       *           
36       */
37      private String authorEmail;
38  
39  
40        //-----------/
41       //- Methods -/
42      //-----------/
43  
44      /**
45       * Get the page author email.
46       * 
47       * @return String
48       */
49      public String getAuthorEmail()
50      {
51          return this.authorEmail;
52      } //-- String getAuthorEmail()
53  
54      /**
55       * Get the page author name.
56       * 
57       * @return String
58       */
59      public String getName()
60      {
61          return this.name;
62      } //-- String getName()
63  
64      /**
65       * Set the page author email.
66       * 
67       * @param authorEmail
68       */
69      public void setAuthorEmail( String authorEmail )
70      {
71          this.authorEmail = authorEmail;
72      } //-- void setAuthorEmail( String )
73  
74      /**
75       * Set the page author name.
76       * 
77       * @param name
78       */
79      public void setName( String name )
80      {
81          this.name = name;
82      } //-- void setName( String )
83  
84  
85  }