Refactory: smarty.ui plugin.
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.sql / src / net / sourceforge / phpdt / sql / sql / DbElementsConstants.java
1 /*
2  * Created on 8/07/2003
3  *
4  * To change the template for this generated file go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */
7 package net.sourceforge.phpdt.sql.sql;
8
9 /**
10  * @author panic
11  * Constants for the different types of database elements that we can access
12  */
13 public interface DbElementsConstants {
14         String Table = "TABLE";
15         String View = "VIEW";
16         String Sequence = "SEQUENCE";
17         
18 }