/* Category.java {{IS_NOTE Purpose: Description: History: Nov 12, 2008 10:37:09 AM , Created by jumperchen }}IS_NOTE Copyright (C) 2008 Potix Corporation. All Rights Reserved. {{IS_RIGHT This program is distributed under GPL Version 3.0 in the hope that it will be useful, but WITHOUT ANY WARRANTY. }}IS_RIGHT */ package org.zkoss.zksandbox; import java.util.LinkedList; import java.util.List; /** * @author jumperchen */ public class Category { private String _id; private String _icon; private String _label; private String _href; private List _items; public Category(String id, String icon, String label, String href) { _id = id; _icon = icon; _label = label; _items = new LinkedList() { public Object remove(int index) { throw new UnsupportedOperationException(); } }; _href = href; } public void addItem(DemoItem item) { _items.add(item); } public String getHref() { return _href; } public List getItems() { return _items; } public String getId() { return _id; } public String getIcon() { return _icon; } public String getLabel() { return _label; } }