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$ 7 8 package org.ozoneDB.collections; 9 10 import org.ozoneDB.OzoneRemote; 11 12 /** 13 * 14 * @author <a HREF="mailto:ozoneATmekenkampD0Tcom">Leo Mekenkamp (mind the anti-sp@m)</a> 15 */ 16 public interface _AbstractOzoneMap_OzoneNode extends OzoneMap.Node, OzoneRemote { 17 18 public Object setValue(Object value); /*update*/ 19 20 public void setKey(Object key); /*update*/ 21 22 }