X-Git-Url: http://git.phpeclipse.com 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 index 0000000..99972eb --- /dev/null +++ b/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/sql/parser/SQL.java @@ -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(); +}