/* * Created on 8/07/2003 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ package net.sourceforge.phpdt.sql.sql; /** * @author panic * Constants for the different types of database elements that we can access */ public interface DbElementsConstants { String Table = "TABLE"; String View = "VIEW"; String Sequence = "SEQUENCE"; }