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