package lectures.generics_adapters;
import util.annotations.WebDocuments;

@WebDocuments({"Lectures/GenericsAdapters.pptx", "Lectures/GenericsAdapters.pdf", "Videos/GenericsAdapters.avi"})
public interface ObjectHistory {
    public void addElement(Object element);
    public Object elementAt (int index); 
    public int size();
}