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
     1 package info.globalcode.sql.dk;
     2 
     3 /**
     4  *
     5  * @author Ing. František Kučera (frantovo.cz)
     6  */
     7 public class Parameter {
     8 
     9 	private Object value;
    10 	private int type;
    11 
    12 	public Object getValue() {
    13 		return value;
    14 	}
    15 
    16 	public void setValue(Object value) {
    17 		this.value = value;
    18 	}
    19 
    20 	/**
    21 	 * @see java.sql.Types
    22 	 */
    23 	public int getType() {
    24 		return type;
    25 	}
    26 
    27 	/**
    28 	 * @see java.sql.Types
    29 	 */
    30 	public void setType(int type) {
    31 		this.type = type;
    32 	}
    33 }