git://secure.phpeclipse.com
/
phpeclipse.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
implemented 1416503, automatic closing of braces
[phpeclipse.git]
/
archive
/
net.sourceforge.phpeclipse.quantum.sql
/
src
/
com
/
quantum
/
sql
/
parser
/
SQL.java
1
package com.quantum.sql.parser;
2
3
4
/**
5
* @author BC
6
*/
7
public interface SQL {
8
9
/**
10
* The command describes the type of SQL statement that is represented. The command
11
* might be "SELECT" or "ALTER TABLE" or "GRANT"
12
*
13
* @return
14
*/
15
public String getCommand();
16
}