Coverage report

  %line %branch
com.wikihouse.wildcats0201.jdbcchart.dto.ChartDTO
0% 
0% 

 1  
 package com.wikihouse.wildcats0201.jdbcchart.dto;
 2  
 
 3  
 import org.jfree.chart.plot.PlotOrientation;
 4  
 import org.jfree.data.general.Dataset;
 5  
 
 6  
 /**
 7  
  * <B>ChartDTO </B>.
 8  
  * 
 9  
  * @author $Author: wildcats $
 10  
  * @version $Revision: 5 $
 11  
  */
 12  0
 public class ChartDTO {
 13  
 
 14  
     private String title;
 15  
     private String xAxisLabel;
 16  
     private String yAxisLabel;
 17  
     private Dataset dataset;
 18  
     private PlotOrientation orientation;
 19  
     private boolean legend;
 20  
     private boolean tooltips;
 21  
     private boolean urls;
 22  
 
 23  
     public Dataset getDataset() {
 24  0
         return dataset;
 25  
     }
 26  
 
 27  
     public void setDataset(Dataset dataset) {
 28  0
         this.dataset = dataset;
 29  0
     }
 30  
 
 31  
     public boolean isLegend() {
 32  0
         return legend;
 33  
     }
 34  
 
 35  
     public void setLegend(boolean legend) {
 36  0
         this.legend = legend;
 37  0
     }
 38  
 
 39  
     public PlotOrientation getOrientation() {
 40  0
         return orientation;
 41  
     }
 42  
 
 43  
     public void setOrientation(PlotOrientation orientation) {
 44  0
         this.orientation = orientation;
 45  0
     }
 46  
 
 47  
     public String getTitle() {
 48  0
         return this.title;
 49  
     }
 50  
 
 51  
     public void setTitle(java.lang.String title) {
 52  0
         this.title = title;
 53  0
     }
 54  
 
 55  
     public boolean isTooltips() {
 56  0
         return this.tooltips;
 57  
     }
 58  
 
 59  
     public void setTooltips(boolean tooltips) {
 60  0
         this.tooltips = tooltips;
 61  0
     }
 62  
 
 63  
     public boolean isUrls() {
 64  0
         return urls;
 65  
     }
 66  
 
 67  
     public void setUrls(boolean urls) {
 68  0
         this.urls = urls;
 69  0
     }
 70  
 
 71  
     public String getXAxisLabel() {
 72  0
         return this.xAxisLabel;
 73  
     }
 74  
 
 75  
     public void setXAxisLabel(String axisLabel) {
 76  0
         this.xAxisLabel = axisLabel;
 77  0
     }
 78  
 
 79  
     public String getYAxisLabel() {
 80  0
         return this.yAxisLabel;
 81  
     }
 82  
 
 83  
     public void setYAxisLabel(String axisLabel) {
 84  0
         this.yAxisLabel = axisLabel;
 85  0
     }
 86  
 }

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