3f5dc51d11befa7fe29c19c0410cc14478b2e982
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / IQuantumConstants.java
1 /*
2  * Created on 12-jul-2003
3  *
4  */
5 package com.quantum;
6
7 /**
8  * @author panic
9  *
10  * Constants for general use in the quantum plug-in
11  */
12 public interface IQuantumConstants {
13         public static final String PLUGIN_ID ="com.quantum"; //$NON-NLS-1$
14         public static final String PREFIX = PLUGIN_ID+"."; //$NON-NLS-1$
15
16         public static final String ADD_SCHEMA_DIALOG_CONTEXT = PREFIX+"add_schema_dialog_context"; //$NON-NLS-1$
17
18         //Constants for specifying Tables, Views and Sequences to the JDBC driver
19         public static final String Table = "TABLE";             
20         public static final String View = "VIEW";
21         public static final String Sequence = "SEQUENCE";
22
23         public static final String autoCommitTrue = "Always True";
24         public static final String autoCommitFalse = "Always False";
25         public static final String autoCommitSaved = "Last Saved";
26 }