PPT Slide
public interface Printable{
public class PrintableText extends TextFile implements Printable{
// inherits from TextFile
// must have printMe( ) method to implement Printable
// code to print the text file goes here
public class PrintableGraphics extends Graphics implements Printable {
// inherits from Graphics
// must have printMe( ) method to implement Printable
// code to print the Graphics object goes here