git://secure.phpeclipse.com
/
phpeclipse.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
remove name clash with JDT editor category
[phpeclipse.git]
/
archive
/
net.sourceforge.phpeclipse.quantum.sql
/
src
/
com
/
quantum
/
model
/
Table.java
1
package com.quantum.model;
2
3
import java.sql.SQLException;
4
5
/**
6
* @author BC
7
*/
8
public interface Table extends Entity {
9
public Integer getSize();
10
public void deleteAllRows() throws SQLException, ConnectionException;
11
}