Coverage Report - org.apache.maven.plugins.changes.model.Properties
 
Classes in this File Line Coverage Branch Coverage Complexity
Properties
100%
7/7
N/A
1
 
 1  
 /*
 2  
  =================== DO NOT EDIT THIS FILE ====================
 3  
  Generated by Modello 1.0.1 on 2011-01-24 23:09:16,
 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: 816598 $ $Date: 2012-05-08 12:46:49 +0000 (Tue, 08 May 2012) $
 14  
  */
 15  4
 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  12
         return this.author;
 46  
     } //-- Author getAuthor()
 47  
 
 48  
     /**
 49  
      * Get page Title.
 50  
      * 
 51  
      * @return String
 52  
      */
 53  
     public String getTitle()
 54  
     {
 55  4
         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  4
         this.author = author;
 66  4
     } //-- void setAuthor( Author )
 67  
 
 68  
     /**
 69  
      * Set page Title.
 70  
      * 
 71  
      * @param title
 72  
      */
 73  
     public void setTitle( String title )
 74  
     {
 75  4
         this.title = title;
 76  4
     } //-- void setTitle( String )
 77  
 
 78  
 
 79  
 }