01: // Copyright (c) 2002 Per M.A. Bothner
02: // This is free software; for terms and warranty disclaimer see ./COPYING.
03:
04: package gnu.lists;
05:
06: /** A predicate that (only) matches only "nodes" in the XML sense.
07: * Only matches nodes in the XML "info-set". Specifically, given
08: * a sequence of primtive values only matches the first as a "text" node.
09: */
10:
11: public interface NodePredicate extends ItemPredicate {
12: }
|