Package com.ibatis.common.util

Examples of com.ibatis.common.util.NodeEventParser


  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());
  }
View Full Code Here

TOP

Related Classes of com.ibatis.common.util.NodeEventParser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.