// Copyright 2003, FreeHEP.
package hep.graphics.heprep.util;

import java.util.*;

/**
 *
 * @author M.Donszelmann
 *
 * @version $Id: ArrayListSet.java,v 1.1 2004/09/03 18:18:40 duns Exp $
 */

public class ArrayListSet extends ArrayList implements ListSet {

    public ArrayListSet() {
        super();
    }
    
    public ArrayListSet(Set c) {
        super(c);
    }
    
    public ArrayListSet(int capacity) {
        super(capacity);
    }
    
    // FIXME, the add should probably check that all elements are unique.
}