Lines Matching refs:items
23 private TreeSet items; // The NLS items contained in this group
34 items = new TreeSet(new Comparator(){
57 Iterator iter = items.iterator();
70 if (items.contains(item)) {
71 items.remove(item);
74 items.add(item);
81 Iterator iter = items.iterator();
85 items.remove(item);
92 * Returns the number of items stored in the group
95 return items.size();
99 * Returns a BundleItem from the set of items at a particular index point.
100 * If the index is greater than or equal to the number of items in the set,
104 if (index >= items.size())
106 Iterator iter = items.iterator();
154 * This will be found in comment lines above the group items
170 Iterator iter = items.iterator();
183 Iterator iter = items.iterator();