Quantum version 2.4.1
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / sql / parser / SQL.java
diff --git a/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/sql/parser/SQL.java b/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/sql/parser/SQL.java
new file mode 100644 (file)
index 0000000..99972eb
--- /dev/null
@@ -0,0 +1,16 @@
+package com.quantum.sql.parser;
+
+
+/**
+ * @author BC
+ */
+public interface SQL {
+
+       /**
+        * The command describes the type of SQL statement that is represented.  The command
+        * might be "SELECT" or "ALTER TABLE" or "GRANT"
+        * 
+        * @return
+        */
+       public String getCommand();
+}