예제 #1
0
 /**
  * Initialize the tuple-remover object with the details it needs to delete tuples from the
  * specified table.
  *
  * @param tblFileInfo details of the table that will be modified
  */
 public TupleRemover(TableFileInfo tblFileInfo) {
   this.tblFileInfo = tblFileInfo;
   this.tableMgr = tblFileInfo.getTableManager();
   this.eventDispatch = EventDispatcher.getInstance();
 }