Example usage for org.apache.ibatis.mapping MappedStatement getLang

List of usage examples for org.apache.ibatis.mapping MappedStatement getLang

Introduction

In this page you can find the example usage for org.apache.ibatis.mapping MappedStatement getLang.

Prototype

public LanguageDriver getLang() 

Source Link

Usage

From source file:com.dmm.framework.basedb.apache.ibatis.session.Configuration.java

License:Apache License

public ParameterHandler newParameterHandler(MappedStatement mappedStatement, Object parameterObject,
        BoundSql boundSql) {/*  w w w.  j  a v  a2s. co  m*/
    ParameterHandler parameterHandler = mappedStatement.getLang().createParameterHandler(mappedStatement,
            parameterObject, boundSql);
    parameterHandler = (ParameterHandler) interceptorChain.pluginAll(parameterHandler);
    return parameterHandler;
}