| StringHistoryUsingGenerics.java |
package lectures.generics_adapters.extra;
import util.annotations.WebDocuments;
import lectures.generics_adapters.History;
@WebDocuments({"Lectures/GenericsAdaptersExtra.pptx", "Lectures/GenericsAdaptersExtra.pdf", "Videos/GenericsAdaptersExtra.avi"})
public interface StringHistoryUsingGenerics extends History<String> {
}