1 /*
2 * Created on 2003-5-21 22:59:32
3 *
4 * To change the template for this generated file go to
5 * Window>Preferences>Java>Code Generation>Code and Comments
6 */
7 package com.cyclops.dbdigger.schema;
8 /*** Type model interface, not finished yet
9 *
10 * @author <a href="mailto:joeblack.guo@vtradex.com">joel guo</a>
11 * @since 2003-5-21 22:59:32
12 */
13 public interface DBType {
14 /*** Empty Type object array */
15 DBType[] EMPTY_ARRAY = new DBType[0];
16 /***@return Name of this type */
17 String getName();
18 /***@return Does value of this type need quotation */
19 boolean needQuotation();
20 }
This page was automatically generated by Maven