View Javadoc

1   package org.catacomb.interlish.structure;
2   
3   
4   public interface TablePeer {
5   
6   
7       void initFromTable(Table table);
8   
9       void attachTable(Table table);
10  
11      Table getTable();
12  
13      void removeChild(TablePeer tp);
14  
15      void notifyObservers();
16  
17  
18  }