Coverage report

  %line %branch
org.demosys.web.project.ProjectView
0% 
0% 

 1  
 /*
 2  
  * Demosys.
 3  
  *
 4  
  * Terms of license - http://opensource.org/licenses/apachepl.php
 5  
  */
 6  
 package org.demosys.web.project;
 7  
 /**
 8  
  * Value Object d'un projet
 9  
  *
 10  
  * @author ABOUELF
 11  
  */
 12  0
 public class ProjectView implements Cloneable {
 13  
     private String name;
 14  
     private String description;
 15  
 
 16  
     public Object clone() {
 17  
         try {
 18  0
             return super.clone();
 19  
         }
 20  
         catch (CloneNotSupportedException e) {
 21  
             // Impossible
 22  0
             e.printStackTrace();
 23  
 
 24  0
             return null;
 25  
         }
 26  
     }
 27  
 
 28  
 
 29  
     public String getName() {
 30  0
         return name;
 31  
     }
 32  
 
 33  
 
 34  
     public void setName(String name) {
 35  0
         this.name = name;
 36  0
     }
 37  
 
 38  
 
 39  
     public String getDescription() {
 40  0
         return description;
 41  
     }
 42  
 
 43  
 
 44  
     public void setDescription(String description) {
 45  0
         this.description = description;
 46  0
     }
 47  
 }

This report is generated by jcoverage, Maven and Maven JCoverage Plugin.