1 /*
2 * Created on 2003-6-11 10:45:03 by joel guo
3 *
4 * vTradEx Information Technology Inc.
5 */
6 package com.cyclops.dbdigger.schema;
7 import java.util.Hashtable;
8 import java.util.Properties;
9
10 /*** Add description <font color="red">HERE</font>!
11 *
12 * @author <a href="mailto:joeblack.guo@vtradex.com">joel guo</a>
13 * @since 2003-6-11 10:45:03
14 */
15 public class DefaultTypeFactory implements DBTypeFactory {
16 private Hashtable cached = new Hashtable();
17 /*** Override method getType() of super class
18 * @see com.cyclops.dbdigger.schema.DBTypeFactory#getType(java.lang.String, java.util.Properties)
19 */
20 public DBType getType(String typeName, Properties columnProperties) {
21 // TODO Auto-generated method stub
22 return null;
23 }
24 }
This page was automatically generated by Maven