1 /*
2 * Created on 2003-6-19 14:48:21 by joel guo
3 *
4 * vTradEx Information Technology Inc.
5 */
6 package com.cyclops.dbdigger.schema;
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-19 14:48:21
11 */
12 public class UnknownType implements DBType {
13 /*** Instance */
14 public static final UnknownType INSTANCE = new UnknownType();
15 /*** Name */
16 public static final String NAME = "UNKNOWN";
17 /*** Override method getName() of super class
18 * @see com.cyclops.dbdigger.schema.DBType#getName()
19 */
20 public String getName() {
21 return NAME;
22 }
23 /*** Override method needQuotation() of super class
24 * @see com.cyclops.dbdigger.schema.DBType#needQuotation()
25 */
26 public boolean needQuotation() {
27 return true;
28 }
29 }
This page was automatically generated by Maven