01: /*
02: * To change this template, choose Tools | Templates
03: * and open the template in the editor.
04: */
05:
06: package it.businesslogic.ireport.gui;
07:
08: /**
09: *
10: * @author gtoffoli
11: */
12: public class PropertyHint {
13:
14: private String propertyName = "";
15: private String propertyDescription = "";
16:
17: public PropertyHint() {
18: }
19:
20: public PropertyHint(String propertyName, String propertyDescription) {
21: this .propertyName = propertyName;
22: this .propertyDescription = propertyDescription;
23: }
24:
25: public String getPropertyName() {
26: return propertyName;
27: }
28:
29: public void setPropertyName(String propertyName) {
30: this .propertyName = propertyName;
31: }
32:
33: public String getPropertyDescription() {
34: return propertyDescription;
35: }
36:
37: public void setPropertyDescription(String propertyDescription) {
38: this.propertyDescription = propertyDescription;
39: }
40:
41: }
|