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 key); 17 18 public Object getMinKey(); 19 20 public Object getMaxKey(); 21 22 public BaseTreeMap getOwner(); 23 }