All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.jdbcproc.daofactory.impl.dbstrategy.StatementArgument Maven / Gradle / Ivy

There is a newer version: 1.1-35
Show newest version
package com.googlecode.jdbcproc.daofactory.impl.dbstrategy;

/**
 * For db strategy
 */
public class StatementArgument {

    public StatementArgument(String aParameterName, int aParameterIndex) {
        theParameterName = aParameterName;
        theParameterIndex = aParameterIndex;
    }

    /** Parameter index */
    public int getParameterIndex() { return theParameterIndex; }

    /** parameter name */
    public String getName() { return theParameterName; }

    /** Parameter index */
    private final int theParameterIndex;
    /** parameter name */
    private final String theParameterName;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy