1 /*
2 * Created on 2003-6-6 15:33:41 by joel guo
3 *
4 * vTradEx Information Technology Inc.
5 */
6 package com.cyclops.dbdigger.sql;
7 import java.util.ArrayList;
8 import java.util.List;
9 /*** Add description <font color="red">HERE</font>!
10 *
11 * @author <a href="mailto:joeblack.guo@vtradex.com">joel guo</a>
12 * @since 2003-6-6 15:33:41
13 */
14 public class Insert extends SQL {
15 /*** Empty array */
16 public static final Insert[] EMPTY_ARRAY = new Insert[0];
17 /*** Keyword in sql */
18 public static final String OPERATION = "INSERT";
19 private List values = new ArrayList();
20 /*** Constructor of class Insert
21 */
22 public Insert() {
23 super(OPERATION);
24 }
25 }
This page was automatically generated by Maven