/** * Class which holds a collection that is a table * Section 2.3.2 *@author Kim Paterson */ package question.old; import java.util.Collection; public abstract class Table { public Collection table; public abstract Collection getTable(); public abstract void addToTable(); public abstract void deleteFromTable(); }