1 /* $Id: Type.java,v 1.3 2006/01/10 16:42:54 psionides Exp $ */
2 package net.sourceforge.jdbdump.dump;
3
4 /***
5 * Represents a custom data type.
6 * @todo this class is not implemented yet
7 */
8
9 //TODO: implement custom types
10
11 public class Type {
12 private String name;
13 private String text;
14 }