initial quantum version
[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 }