package edu.neu.ccs.demeter.dj;

import java.util.*;

public interface Collection {
  public Enumeration elements();
}
//FIXME: add List?
