package lectures.generics_adapters.extra;
import util.annotations.WebDocuments;
import lectures.generics_adapters.AHistory;
import lectures.generics_adapters.History;
@WebDocuments({"Lectures/GenericsAdaptersExtra.pptx", "Lectures/GenericsAdaptersExtra.pdf", "Videos/GenericsAdaptersExtra.avi"})
public class AStringHistoryUsingGenerics extends AHistory<String> implements StringHistoryUsingGenerics {
public static void main (String[] args) {
History<String> history = new AStringHistoryUsingGenerics();
StringHistoryUsingGenerics stringHistory = new AStringHistoryUsingGenerics();
stringHistory.addElement("James Dean");
stringHistory.addElement("Joe Doe");
stringHistory.addElement("Jane Smith");
stringHistory.addElement("John Smith");
bus.uigen.ObjectEditor.edit(stringHistory);
}
}