public XmlSqlMapParser(XmlSqlMapConfigParser configParser, Reader reader) {
this.configParser = configParser;
this.config = (Ibatis2Configuration) configParser.getConfiguration();
this.reader = reader;
this.parser = new NodeEventParser();
this.parser.addNodeletHandler(this);
this.parser.setVariables(config.getVariables());
this.flushCacheStatements = new ArrayList<String>();
this.parser.setEntityResolver(new SqlMapEntityResolver());
}