View Javadoc
1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello 1.0.1 on 2016-10-29 20:36:58,
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$ $Date$
14   */
15  public class Properties
16      implements java.io.Serializable
17  {
18  
19        //--------------------------/
20       //- Class/Member Variables -/
21      //--------------------------/
22  
23      /**
24       * The page title.
25       */
26      private String title;
27  
28      /**
29       * The page author.
30       */
31      private Author author;
32  
33  
34        //-----------/
35       //- Methods -/
36      //-----------/
37  
38      /**
39       * Get the page author.
40       * 
41       * @return Author
42       */
43      public Author getAuthor()
44      {
45          return this.author;
46      } //-- Author getAuthor()
47  
48      /**
49       * Get the page title.
50       * 
51       * @return String
52       */
53      public String getTitle()
54      {
55          return this.title;
56      } //-- String getTitle()
57  
58      /**
59       * Set the 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 the 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  }