import java.util.*; interface Printable { /* *This interface models a protocol for things that want to be printed *in a formated way * *Printables are expected to provide the title for the printout *and a string collection for the contents */ //Interface Printable Methods //============================ public String getTitle(); //answer the title to be printed when the Printable is printed public ArrayList getContents(); //answer the contents to be printed }