ItemPredicate.java 294 B

12345678910111213
  1. // Copyright (c) 2002 Per M.A. Bothner
  2. // This is free software; for terms and warranty disclaimer see ./COPYING.
  3. package gnu.lists;
  4. /** A predicate (or type) on an item in a sequence.
  5. */
  6. public interface ItemPredicate
  7. {
  8. public boolean isInstancePos (AbstractSequence seq, int ipos);
  9. }