1 /* $Id: Set.java,v 1.1 2000/08/07 18:42:48 gelderen Exp $
2  *
3  * Copyright (C) 2000 The Cryptix Foundation Limited. All rights reserved.
4  *
5  * Use, modification, copying and distribution of this software is subject
6  * the terms and conditions of the Cryptix General Licence. You should have
7  * received a copy of the Cryptix General Licence along with this library;
8  * if not, you can download a copy from http://www.cryptix.org/ .
9  */
10 package java.util;
11 
12 
13 /**
14  * Refer to Sun's JDK 1.2+ documentation.
15  *
16  * @version $Revision: 1.1 $
17  * @author  Jeroen C. van Gelderen (gelderen@cryptix.org)
18  */
19 public interface Set extends Collection {
20 }
21