01: /*
02: * $Id: SelectorBean.java 635 2006-04-19 23:55:16Z wrh2 $
03: *
04: * Filename : SelectorBean.java
05: * Created : 24.06.2004
06: * Project : VQWiki
07: */
08: package vqwiki.servlets.beans;
09:
10: /**
11: * Bean, which is used for a selector
12: *
13: * @version $Revision: 635 $ - $Date: 2006-04-20 01:55:16 +0200 (do, 20 apr 2006) $
14: * @author SinnerSchrader (tobsch)
15: */
16: public class SelectorBean {
17:
18: private String key;
19: private String label;
20:
21: /**
22: * @return Returns the key.
23: */
24: public String getKey() {
25: return key;
26: }
27:
28: /**
29: * @return Returns the label.
30: */
31: public String getLabel() {
32: return label;
33: }
34:
35: /**
36: * @param key The key to set.
37: */
38: public void setKey(String key) {
39: this .key = key;
40: }
41:
42: /**
43: * @param label The label to set.
44: */
45: public void setLabel(String label) {
46: this.label = label;
47: }
48: }
|