View Javadoc

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  
15      public Label(String title, String xLabel, String yLabel) {
16          this.title = title;
17          this.xLabel = xLabel;
18          this.yLabel = yLabel;
19      }
20  
21      public String getTitle() {
22          return this.title;
23      }
24  
25      public String getXLabel() {
26          return this.xLabel;
27      }
28  
29      public String getYLabel() {
30          return this.yLabel;
31      }
32  
33  }