KickJava   Java API By Example, From Geeks To Geeks.

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


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 /**
11  * <p>You are encouraged NOT to use this interface, but rather just use {@link
12  * OzoneTreeSet}, which does not contain the 'internal' methods, or even
13  * {@link java.util.SortedSet}, which does not have any ozone dependency at all</p>
14  * <p>This interface functions as a sort of base interface for ozone aware treesets,
15  * were those treesets themselves can implement if the nodes in the tree are
16  * ozone objects themselves or merely serializables.</p>
17  *
18  * @author <a HREF="mailto:ozoneATmekenkampD0Tcom">Leo Mekenkamp (mind the anti-sp@m)</a> (adaptation for ozone)
19  */

20 public interface BaseTreeSet extends OzoneTreeSet {
21     
22 }
Popular Tags