ILibItem AbsItem Book DVD //restricted to AbsItem AbsItem item = new Book(); item.timesOut; //not okay LinkedList //restricted to ILibItem ILibItem item = new Book(); item.checkOut(); //okay item.makeRequest(); //not okay //gives you everything Book item = new Book();