Coverage report

  %line %branch
org.demosys.task.TaskView
0% 
0% 

 1  
 /*
 2  
  * Demosys.
 3  
  *
 4  
  * Terms of license - http://opensource.org/licenses/apachepl.php
 5  
  */
 6  
 package org.demosys.task;
 7  
 /**
 8  
  */
 9  0
 public class TaskView implements Cloneable {
 10  
     private String title;
 11  
     private String description;
 12  
     private String responsible;
 13  
     private double estimate;
 14  
     private double work;
 15  
     private double remainingWork;
 16  
 
 17  
     public Object clone() {
 18  
         try {
 19  0
             return super.clone();
 20  
         }
 21  
         catch (CloneNotSupportedException e) {
 22  
             // Impossible
 23  0
             e.printStackTrace();
 24  
 
 25  0
             return null;
 26  
         }
 27  
     }
 28  
 
 29  
 
 30  
     public String getTitle() {
 31  0
         return title;
 32  
     }
 33  
 
 34  
 
 35  
     public void setTitle(String title) {
 36  0
         this.title = title;
 37  0
     }
 38  
 
 39  
 
 40  
     public String getDescription() {
 41  0
         return description;
 42  
     }
 43  
 
 44  
 
 45  
     public void setDescription(String description) {
 46  0
         this.description = description;
 47  0
     }
 48  
 
 49  
 
 50  
     public String getResponsible() {
 51  0
         return responsible;
 52  
     }
 53  
 
 54  
 
 55  
     public void setResponsible(String responsible) {
 56  0
         this.responsible = responsible;
 57  0
     }
 58  
 
 59  
 
 60  
     public double getEstimate() {
 61  0
         return estimate;
 62  
     }
 63  
 
 64  
 
 65  
     public void setEstimate(double estimate) {
 66  0
         this.estimate = estimate;
 67  0
     }
 68  
 
 69  
 
 70  
     public double getWork() {
 71  0
         return work;
 72  
     }
 73  
 
 74  
 
 75  
     public void setWork(double work) {
 76  0
         this.work = work;
 77  0
     }
 78  
 
 79  
 
 80  
     public double getRemainingWork() {
 81  0
         return remainingWork;
 82  
     }
 83  
 
 84  
 
 85  
     public void setRemainingWork(double remainingWork) {
 86  0
         this.remainingWork = remainingWork;
 87  0
     }
 88  
 }

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