1 9 package org.ozoneDB.DxLib; 10 11 import java.util.*; 12 13 14 18 public class DxDiskHashCompatible extends DxObject { 19 20 final static long serialVersionUID = 1L; 21 22 23 protected Vector tables = new Vector(); 24 25 26 27 public DxDiskHashCompatible() { 28 } 29 30 31 32 public void addTable( DxDiskHashMap _table ) { 33 tables.addElement( _table ); 34 } 35 36 37 38 public void removeTable( DxDiskHashMap _table ) { 39 tables.removeElement( _table ); 40 } 41 42 43 49 public void done() { 50 System.out.print( "." ); 51 } 54 55 56 57 protected void finalize() throws Throwable { 58 done(); 59 super.finalize(); 60 } 61 } 62 | Popular Tags |