java/sql-dk/src/info/globalcode/sql/dk/Parameter.java
branchv_0
changeset 1 f32dac78d13a
child 4 f5c3350f3d78
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/java/sql-dk/src/info/globalcode/sql/dk/Parameter.java	Sun Dec 15 19:20:50 2013 +0100
     1.3 @@ -0,0 +1,33 @@
     1.4 +package info.globalcode.sql.dk;
     1.5 +
     1.6 +/**
     1.7 + *
     1.8 + * @author Ing. František Kučera (frantovo.cz)
     1.9 + */
    1.10 +public class Parameter {
    1.11 +
    1.12 +	private Object value;
    1.13 +	private int type;
    1.14 +
    1.15 +	public Object getValue() {
    1.16 +		return value;
    1.17 +	}
    1.18 +
    1.19 +	public void setValue(Object value) {
    1.20 +		this.value = value;
    1.21 +	}
    1.22 +
    1.23 +	/**
    1.24 +	 * @see java.sql.Types
    1.25 +	 */
    1.26 +	public int getType() {
    1.27 +		return type;
    1.28 +	}
    1.29 +
    1.30 +	/**
    1.31 +	 * @see java.sql.Types
    1.32 +	 */
    1.33 +	public void setType(int type) {
    1.34 +		this.type = type;
    1.35 +	}
    1.36 +}