Coverage report

  %line %branch
com.wikihouse.wildcats0201.jdbcchart.dto.Label
100% 
100% 

 1  
 package com.wikihouse.wildcats0201.jdbcchart.dto;
 2  
 
 3  
 /**
 4  
  * <B>Label </B>.
 5  
  * 
 6  
  * @author $Author: wildcats $
 7  
  * @version $Revision: 5 $
 8  
  */
 9  
 public class Label {
 10  
 
 11  
     private final String title;
 12  
     private final String xLabel;
 13  
     private final String yLabel;
 14  2
 
 15  3
     public Label(String title, String xLabel, String yLabel) {
 16  3
         this.title = title;
 17  3
         this.xLabel = xLabel;
 18  3
         this.yLabel = yLabel;
 19  1
     }
 20  
 
 21  2
     public String getTitle() {
 22  1
         return this.title;
 23  
     }
 24  
 
 25  2
     public String getXLabel() {
 26  1
         return this.xLabel;
 27  
     }
 28  
 
 29  2
     public String getYLabel() {
 30  1
         return this.yLabel;
 31  
     }
 32  
 
 33  
 }

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