1 package com.openedit.util.strainer; 2 3 /** 4 * This is a visitor for {@link NotFilter}s. 5 * 6 * @author Eric Galluzzo 7 */ 8 public interface NotFilterVisitor extends FilterVisitor 9 { 10 /** 11 * Visit the given {@link NotFilter}. 12 * 13 * @param inNotFilter 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 visitNotFilter( NotFilter inNotFilter ) throws FilterException; 19 } 20