//(c):Benja Fallenstein package gzz.util; import java.util.Arrays; /** A convenience class for using a byte array * as a hashtable key. */ public class ByteArrayKey { public final byte[] key; protected final int hashCode; public ByteArrayKey(byte[] key) { this.key = key; int hashCode = 0; for(int i=0; i