package lectures.arrays.collections_kinds.extra;
import util.annotations.WebDocuments;
import java.util.Vector;
import lectures.arrays.collections_implementation.StringHistory;
@WebDocuments({"Lectures/ArraysCollectionsKindsExtra.pptx", "Lectures/ArraysCollectionsKindsExtra.pdf", "Videos/ArraysCollectionsKindsExtra.avi"})
public class AVectorBasedStringHistory implements StringHistory{
Vector contents = new Vector();
@Override
public void addElement(String element) {
}
@Override
public String elementAt(int index) {
return null;
}
@Override
public int size() {
return 0;
}
}