java/sql-dk/src/info/globalcode/sql/dk/Parameter.java
author František Kučera <franta-hg@frantovo.cz>
Sun, 15 Dec 2013 19:20:50 +0100
branchv_0
changeset 1 f32dac78d13a
child 4 f5c3350f3d78
permissions -rw-r--r--
WOW some classes LOL; TODO: refactor

package info.globalcode.sql.dk;

/**
 *
 * @author Ing. František Kučera (frantovo.cz)
 */
public class Parameter {

	private Object value;
	private int type;

	public Object getValue() {
		return value;
	}

	public void setValue(Object value) {
		this.value = value;
	}

	/**
	 * @see java.sql.Types
	 */
	public int getType() {
		return type;
	}

	/**
	 * @see java.sql.Types
	 */
	public void setType(int type) {
		this.type = type;
	}
}