~ubuntu-branches/ubuntu/edgy/rpm/edgy

« back to all changes in this revision

Viewing changes to db/java/src/com/sleepycat/db/DbBtreeCompare.java

  • Committer: Bazaar Package Importer
  • Author(s): Joey Hess
  • Date: 2002-01-22 20:56:57 UTC
  • Revision ID: james.westby@ubuntu.com-20020122205657-l74j50mr9z8ofcl5
Tags: upstream-4.0.3
ImportĀ upstreamĀ versionĀ 4.0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-
 
2
 * See the file LICENSE for redistribution information.
 
3
 *
 
4
 * Copyright (c) 2000-2001
 
5
 *      Sleepycat Software.  All rights reserved.
 
6
 *
 
7
 * $Id: DbBtreeCompare.java,v 11.5 2001/07/02 01:03:21 bostic Exp $
 
8
 */
 
9
 
 
10
package com.sleepycat.db;
 
11
 
 
12
/*
 
13
 * This interface is used by DbEnv.set_bt_compare()
 
14
 *
 
15
 */
 
16
public interface DbBtreeCompare
 
17
{
 
18
    public abstract int bt_compare(Db db, Dbt dbt1, Dbt dbt2);
 
19
}
 
20
 
 
21
// end of DbBtreeCompare.java