00001 /*- 00002 * See the file LICENSE for redistribution information. 00003 * 00004 * Copyright (c) 2001-2005 00005 * Sleepycat Software. All rights reserved. 00006 * 00007 * $Id: BtreePrefixCalculator.java,v 12.1 2005/06/16 20:22:58 bostic Exp $ 00008 */ 00009 00010 package com.sleepycat.db; 00011 00012 public interface BtreePrefixCalculator { 00013 int prefix(Database db, DatabaseEntry dbt1, DatabaseEntry dbt2); 00014 }