/*
 * Enumerable.java
 */

import java.util.Enumeration;

/**
 * Enumerable indicates that a (collection) class provides an 
 * Enumeration via an elements() method
 * @see java.util.Enumeration
 * @Author Ken Bandes
 */
public interface Enumerable
{
    /**
     * obtain an Enumeration
     * @return Enumeration over the collection
     */
    public Enumeration elements();
}
