package lectures.arrays.collections_kinds;
import util.annotations.WebDocuments;

@WebDocuments({"Lectures/ArraysCollectionsKinds.pptx", "Lectures/ArraysCollectionsKinds.pdf", "Videos/ArraysCollectionsKinds.avi"})
public interface TransparentStringStack {
    public int size();
    public String get(int index);
    public void push(String element);
    public String pop();    
}