1 /*
2 * Created on 2003-6-11 10:35:44 by joel guo
3 *
4 * vTradEx Information Technology Inc.
5 */
6 package com.cyclops.dbdigger.schema;
7 import java.util.Properties;
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-11 10:35:44
12 */
13 public interface DBTypeFactory {
14 /*** Get type object from the schema
15 * @param typeName Name of the type definded as type attribute in schema
16 * @param columnProperties Other properties in the column define
17 * @return Type object
18 */
19 DBType getType(String typeName, Properties columnProperties);
20 }
This page was automatically generated by Maven