KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > util > strainer > AndFilterVisitor


1 package com.openedit.util.strainer;
2
3 /**
4  * This is a visitor for {@link AndFilter}s.
5  *
6  * @author Eric Galluzzo
7  */

8 public interface AndFilterVisitor extends FilterVisitor
9 {
10     /**
11      * Visit the given {@link AndFilter}.
12      *
13      * @param inAndFilter The filter to visit
14      *
15      * @throws FilterException
16      * If an error occurred while attempting to operate on the given filter
17      */

18     public void visitAndFilter( AndFilter inAndFilter ) throws FilterException;
19 }
20
Popular Tags