KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > wcf > popup > ItemSupport


1 /*
2  * Copyright (c) 1971-2003 TONBELLER AG, Bensheim.
3  * All rights reserved.
4  */

5 package com.tonbeller.wcf.popup;
6
7 public abstract class ItemSupport implements Item {
8   String JavaDoc label;
9   String JavaDoc image;
10
11   public ItemSupport() {
12   }
13
14   public ItemSupport(String JavaDoc label) {
15     this.label = label;
16   }
17
18   public ItemSupport(String JavaDoc label, String JavaDoc image) {
19     this.label = label;
20     this.image = image;
21   }
22
23   public String JavaDoc getImage() {
24     return image;
25   }
26
27   public void setImage(String JavaDoc image) {
28     this.image = image;
29   }
30
31   public String JavaDoc getLabel() {
32     return label;
33   }
34
35   public void setLabel(String JavaDoc label) {
36     this.label = label;
37   }
38 }
39
Popular Tags