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) 2003-@year@ Leo Mekenkamp. All rights reserved. 6 // $Id: FullTreeMap.java,v 1.3 2003/02/02 17:21:41 leomekenkamp Exp $ 7 8 package org.ozoneDB.collections; 9 10 /** 11 * Effectively does not add anything to OzoneCollectionsTest from which it is 12 * extended, but it is still here to stay as close to the Collections layout as 13 * possible. 14 * @author <a HREF="mailto:ozoneATmekenkampD0Tcom">Leo Mekenkamp (mind the anti-sp@m)</a> 15 */ 16 public abstract class OzoneSetTest extends OzoneCollectionTest { 17 18 public OzoneSetTest(String name) { 19 super(name); 20 } 21 22 } 23