Searched defs:items (Results 1 - 2 of 2) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/index/
H A DFilter.java52 private final LinkedHashSet<String> items; field in class:Filter
69 items = new LinkedHashSet<String>();
78 * Check, whether this instance contains any items, which could be matched.
79 * @return {@code true} if it contains any items.
82 return items.isEmpty();
86 * Get the complete list of items that would be matched by this matcher.
91 return items;
110 if (items.add(pattern)) {
122 items.clear();
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DUtil.java1014 * @param items
1015 * the list items
1020 Collection<String> items) throws IOException
1023 for (String item : items) {
1019 printUnorderedList(Appendable out, Collection<String> items) argument

Completed in 27 milliseconds