| TransparentStringStack.java |
package lectures.arrays.collections_kinds.extra;
import util.annotations.WebDocuments;
@WebDocuments({"Lectures/ArraysCollectionsKindsExtra.pptx", "Lectures/ArraysCollectionsKindsExtra.pdf", "Videos/ArraysCollectionsKindsExtra.avi"})
public interface TransparentStringStack {
public int size();
public String get(int index);
public void push(String element);
public String pop();
}