package com.quantum.model; import java.sql.SQLException; /** * @author BC */ public interface Table extends Entity { public Integer getSize(); public void deleteAllRows() throws SQLException, ConnectionException; }