Lines Matching defs:item
65 * Adds a BundleItem to the group as long as that item is not currently in the group.
66 * If the item.group is not equal to this group, then it is changed to be this group.
69 public void addBundleItem(BundleItem item) {
70 if (items.contains(item)) {
71 items.remove(item);
73 item.setParentGroup(this);
74 items.add(item);
78 * Remove an item of the given name from the group
83 BundleItem item = (BundleItem)iter.next();
84 if (item.getKey().equals(itemName)) {
85 items.remove(item);