public boolean isUniqueProblem(final SAXParseException e) { String error = myHandler.buildMessageString(e); if (ourErrorsSet.contains(error)) return false; ourErrorsSet.add(error); return true; }
public void startProcessing() { myHandler.doParse(); }