1 // You can redistribute this software and/or modify it under the terms of2 // the Ozone Library License version 1 published by ozone-db.org.3 //4 // This file is5 // Copyright (C) 2002-@year@ Leo Mekenkamp. All rights reserved.6 // $Id: OzoneWeakHashMap.java,v 1.1 2002/10/24 15:41:16 per_nyfelt Exp $7 8 package org.ozoneDB.collections;9 10 /**11 *12 * @author <a HREF="mailto:ozoneATmekenkampD0Tcom">Leo Mekenkamp (mind the anti-sp@m)</a>13 */14 public interface _NodeTreeMap_OzoneNode extends _AbstractOzoneMap_OzoneNode, BaseTreeMap.Node {15 16 public void setRight(BaseTreeMap.Node right); /*update*/17 18 public void setParent(BaseTreeMap.Node parent); /*update*/19 20 public void setLeft(BaseTreeMap.Node left); /*update*/21 22 public void setColor(int color); /*update*/23 24 }