NodePredicate.java 406 B

1234567891011121314
  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 that (only) matches only "nodes" in the XML sense.
  5. * Only matches nodes in the XML "info-set". Specifically, given
  6. * a sequence of primtive values only matches the first as a "text" node.
  7. */
  8. public interface NodePredicate extends ItemPredicate
  9. {
  10. }