KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > wcf > param > SqlColumnConstraint


1 package com.tonbeller.wcf.param;
2
3 /**
4  * @author av
5  * @since 31.01.2005
6  */

7 public abstract class SqlColumnConstraint implements SqlExpr {
8   String JavaDoc columnId;
9
10   /**
11    * the ID of the sql column that this constraint is for. The id may be the column name itself
12    * or an identifier that is mapped to the actual column name
13    */

14   public String JavaDoc getColumnId() {
15     return columnId;
16   }
17   /**
18    * the ID of the sql column that this constraint is for. The id may be the column name itself
19    * or an identifier that is mapped to the actual column name
20    */

21   public void setColumnId(String JavaDoc columnId) {
22     this.columnId = columnId;
23   }
24   public Object JavaDoc clone() throws CloneNotSupportedException JavaDoc {
25     return super.clone();
26   }
27 }
28
Popular Tags