View Javadoc
1 /* 2 * Created on 2003-6-6 16:39:02 by joel guo 3 * 4 * vTradEx Information Technology Inc. 5 */ 6 package com.cyclops.dbdigger.sqlcastor; 7 import com.cyclops.dbdigger.sql.SQL; 8 /*** Add description <font color="red">HERE</font>! 9 * 10 * @author <a href="mailto:joeblack.guo@vtradex.com">joel guo</a> 11 * @since 2003-6-6 16:39:02 12 */ 13 public interface SQLCastor { 14 /*** Role in avalon framework */ 15 String ROLE = "dbdigger.sqlcastor"; 16 /*** Cast a SQL object into SQL expression 17 * @param sql SQL object to be cast 18 * @return SQL expression 19 */ 20 String cast(SQL sql); 21 }

This page was automatically generated by Maven