View Javadoc
1 /* 2 * Created on 2003-6-6 16:40:55 by joel guo 3 * 4 * vTradEx Information Technology Inc. 5 */ 6 package com.cyclops.dbdigger.sql; 7 /*** Add description <font color="red">HERE</font>! 8 * 9 * @author <a href="mailto:joeblack.guo@vtradex.com">joel guo</a> 10 * @since 2003-6-6 16:40:55 11 */ 12 public class SQL { 13 /*** Empty sql object array*/ 14 public static final SQL[] EMPTY_ARRAY = new SQL[0]; 15 private String operation; 16 /*** Constructor of class SQL 17 * @param o Keyword 18 */ 19 public SQL(String o) { 20 operation = o; 21 } 22 /*** Method getOperation() in class SQL 23 * @return Operation keyword 24 */ 25 public String getOperation() { 26 return operation; 27 } 28 }

This page was automatically generated by Maven