Coverage Report - org.apache.maven.plugins.changes.model.Author
 
Classes in this File Line Coverage Branch Coverage Complexity
Author
85%
6/7
N/A
1
 
 1  
 /*
 2  
  =================== DO NOT EDIT THIS FILE ====================
 3  
  Generated by Modello 1.0.1 on 2012-09-11 21:40:40,
 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$ $Date$
 16  
  */
 17  2
 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  0
         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  4
         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  2
         this.authorEmail = authorEmail;
 72  2
     } //-- void setAuthorEmail( String )
 73  
 
 74  
     /**
 75  
      * Set the page author name.
 76  
      * 
 77  
      * @param name
 78  
      */
 79  
     public void setName( String name )
 80  
     {
 81  2
         this.name = name;
 82  2
     } //-- void setName( String )
 83  
 
 84  
 
 85  
 }