KickJava   Java API By Example, From Geeks To Geeks.

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


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

5 package com.tonbeller.wcf.popup;
6
7 import java.util.ArrayList JavaDoc;
8 import java.util.List JavaDoc;
9
10 public class GroupItemSupport extends ItemSupport implements GroupItem {
11   List JavaDoc children = new ArrayList JavaDoc();
12   
13   public List JavaDoc getChildren() {
14     return children;
15   }
16
17   public GroupItemSupport() {
18   }
19
20   public GroupItemSupport(String JavaDoc label) {
21     super(label);
22   }
23
24   public GroupItemSupport(String JavaDoc label, String JavaDoc image) {
25     super(label, image);
26   }
27
28
29 }
30
Popular Tags