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