1 21 22 package org.dbunit.dataset.csv.handlers; 23 24 import org.dbunit.dataset.csv.IllegalInputCharacterException; 25 26 public interface Handler { 27 public void handle(char c) throws IllegalInputCharacterException, PipelineException; 28 public boolean canHandle(char c) throws IllegalInputCharacterException; 29 public void noMoreInput() throws IllegalStateException ; 30 public boolean allowForNoMoreInput() throws IllegalStateException ; 31 } 32 | Popular Tags |