1 21 22 package org.dbunit.dataset.csv.handlers; 23 24 public abstract class Helper { 25 26 private PipelineComponent handler; 27 28 abstract void helpWith(char c) throws PipelineException; 29 30 public boolean allowForNoMoreInput() throws IllegalStateException { 31 return true; 32 } 33 34 PipelineComponent getHandler() { 35 return handler; 36 } 37 38 void setHandler(PipelineComponent handler) { 39 this.handler = handler; 40 } 41 } 42 | Popular Tags |