1 21 22 package org.dbunit.dataset.csv.handlers; 23 24 import org.dbunit.dataset.csv.IllegalInputCharacterException; 25 26 public class AllHandler extends AbstractPipelineComponent { 27 28 private AllHandler () {} 29 30 public static final PipelineComponent ACCEPT () { 31 return createPipelineComponent(new AllHandler(), new ACCEPT()); 32 } 33 34 public static final PipelineComponent IGNORE () { 35 return createPipelineComponent(new AllHandler() {}, new IGNORE()); 36 } 37 38 public boolean canHandle(char c) throws IllegalInputCharacterException { 39 return true; 40 } 41 } 42 | Popular Tags |