KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gnu > lists > NodePredicate


1 // Copyright (c) 2002 Per M.A. Bothner
2
// This is free software; for terms and warranty disclaimer see ./COPYING.
3

4 package gnu.lists;
5
6 /** A predicate that (only) matches only "nodes" in the XML sense.
7  * Only matches nodes in the XML "info-set". Specifically, given
8  * a sequence of primtive values only matches the first as a "text" node.
9  */

10
11 public interface NodePredicate extends ElementPredicate
12 {
13 }
14
Popular Tags