KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > collections > _BaseTreeMap_SubMap


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Library License version 1 published by ozone-db.org.
3
//
4
// This file is
5
// Copyright (C) 2002-@year@ Leo Mekenkamp. All rights reserved.
6
// $Id: _BaseTreeMap_SubMap.java,v 1.1 2003/01/26 19:51:28 leomekenkamp Exp $
7

8 package org.ozoneDB.collections;
9
10 /**
11  * <p>DO NOT USE THIS CLASS DIRECTLY.</p>
12  * <p>This should be an inner class; unfortunately ozone does not support those yet.</p>
13  */

14 public interface _BaseTreeMap_SubMap extends OzoneSortedMap {
15
16     public boolean keyInRange(Object JavaDoc key);
17
18     public Object JavaDoc getMinKey();
19
20     public Object JavaDoc getMaxKey();
21
22     public BaseTreeMap getOwner();
23 }
Popular Tags