// CSE 143, Autumn 2013 // The interface specifies the methods that a class that implements // it must have, not how they are implemented (that is up to the class authors). // // Clients can declare variables and parameters of type Item // so that the same code can interact with any type of item. public interface Item { public String getTitle(); }