Home | History | Annotate | Download | only in util

Lines Matching refs:Collection

4 import java.util.Collection;
9 * A simple collection backed store.
14 private Collection _local;
19 * @param collection - initial contents for the store, this is copied.
22 Collection collection)
24 _local = new ArrayList(collection);
28 * Return the matches in the collection for the passed in selector.
31 * @return a possibly empty collection of matching objects.
33 public Collection getMatches(Selector selector)