KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gnu > lists > GroupPredicate


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 a GROUP_VALUE.
7  * If using XML terminology: only matches element nodes.
8  */

9
10 public interface GroupPredicate extends NodePredicate
11 {
12   public boolean isInstance(AbstractSequence seq, int ipos, Object JavaDoc groupType);
13 }
14
Popular Tags