1 package org.dbunit.dataset.common.handlers;
2
3
4 /**
5 * author: fede
6 * 4-set-2003 11.04.01
7 * $Revision: 817 $
8 */
9 public class MockHandlerAccept extends MockHandler {
10 public boolean canHandle(char c) throws IllegalInputCharacterException {
11 return true;
12 }
13 }