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

« back to all changes in this revision

Viewing changes to db/java/src/com/sleepycat/db/DbKeyRange.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) 1997-2001
 
5
 *      Sleepycat Software.  All rights reserved.
 
6
 *
 
7
 * $Id: DbKeyRange.java,v 1.3 2001/05/16 13:09:28 bostic Exp $
 
8
 */
 
9
 
 
10
package com.sleepycat.db;
 
11
 
 
12
/**
 
13
 *
 
14
 * @author Donald D. Anderson
 
15
 */
 
16
public class DbKeyRange
 
17
{
 
18
    public double less;
 
19
    public double equal;
 
20
    public double greater;
 
21
}
 
22
 
 
23
// end of DbKeyRange.java