import java.util.ArrayList;

/*
* example of using Generics
*/

public class Library<T> {

private ArrayList<T> mediaCollection = new ArrayList<T>();