Package com.sun.gjc.util

Examples of com.sun.gjc.util.MethodExecutor


        this.con = con;
        this.mc = mc;
        mcf_ = mc.getMcf();
        cxReqInfo_ = cxRequestInfo;
        statementTimeout = mc.getStatementTimeout();
        executor = new MethodExecutor();
        if (statementTimeout > 0) {
            statementTimeoutEnabled = true;
        }
    }
View Full Code Here


     * @param rs   ResultSet that is to be wraped<br>
     */
    public ResultSetWrapper(Statement stmt, ResultSet rs) {
        resultSet = rs;
        statement = stmt;
        executor = new MethodExecutor();
        if(stmt instanceof ResultSetClosedEventListener) {
            eventListener = (ResultSetClosedEventListener) stmt;
        }
    }
View Full Code Here

TOP

Related Classes of com.sun.gjc.util.MethodExecutor

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.