Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Properties |
|
| 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 | * Class Properties. | |
12 | * | |
13 | * @version $Revision$ $Date$ | |
14 | */ | |
15 | 2 | 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 | 6 | return this.author; |
46 | } //-- Author getAuthor() | |
47 | ||
48 | /** | |
49 | * Get page Title. | |
50 | * | |
51 | * @return String | |
52 | */ | |
53 | public String getTitle() | |
54 | { | |
55 | 2 | 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 | 2 | this.author = author; |
66 | 2 | } //-- void setAuthor( Author ) |
67 | ||
68 | /** | |
69 | * Set page Title. | |
70 | * | |
71 | * @param title | |
72 | */ | |
73 | public void setTitle( String title ) | |
74 | { | |
75 | 2 | this.title = title; |
76 | 2 | } //-- void setTitle( String ) |
77 | ||
78 | ||
79 | } |