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 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 return dataset; 25 } 26 27 public void setDataset(Dataset dataset) { 28 this.dataset = dataset; 29 } 30 31 public boolean isLegend() { 32 return legend; 33 } 34 35 public void setLegend(boolean legend) { 36 this.legend = legend; 37 } 38 39 public PlotOrientation getOrientation() { 40 return orientation; 41 } 42 43 public void setOrientation(PlotOrientation orientation) { 44 this.orientation = orientation; 45 } 46 47 public String getTitle() { 48 return this.title; 49 } 50 51 public void setTitle(java.lang.String title) { 52 this.title = title; 53 } 54 55 public boolean isTooltips() { 56 return this.tooltips; 57 } 58 59 public void setTooltips(boolean tooltips) { 60 this.tooltips = tooltips; 61 } 62 63 public boolean isUrls() { 64 return urls; 65 } 66 67 public void setUrls(boolean urls) { 68 this.urls = urls; 69 } 70 71 public String getXAxisLabel() { 72 return this.xAxisLabel; 73 } 74 75 public void setXAxisLabel(String axisLabel) { 76 this.xAxisLabel = axisLabel; 77 } 78 79 public String getYAxisLabel() { 80 return this.yAxisLabel; 81 } 82 83 public void setYAxisLabel(String axisLabel) { 84 this.yAxisLabel = axisLabel; 85 } 86 }