git://secure.phpeclipse.com
/
phpeclipse.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
shortened display text of variable proposal in content assist
[phpeclipse.git]
/
archive
/
net.sourceforge.phpeclipse.quantum.sql
/
src
/
com
/
quantum
/
sql
/
SQLResults.java
1
package com.quantum.sql;
2
3
4
5
/**
6
* @author BC
7
*/
8
public abstract class SQLResults {
9
public abstract boolean isResultSet();
10
11
private long time;
12
13
public long getTime() {
14
return this.time;
15
}
16
17
public void setTime(long time) {
18
this.time = time;
19
}
20
}