KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gnu > lists > AttributePredicate


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

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