/** * Author: Josiah Yoder et al. * Class: SE1021-031 * Date: 12/17/13 11:42 AM * Lesson: Week 3, Day 1 */ package example3_2; public class Drawable { public String toString() { return "Don't know how to draw"; } } // From Week 3, Day 2 or 3: // // We might want to make Drawable abstract // so that it's clear that a generic Drawable can't be drawn (or even instantiated) // //public abstract class Drawable { // public abstract String toString(); //} // Hey, we might even make it an interface! // // (Though I should really re-work this example to use "draw" instead of "toString") // //public interface Drawable { // String toString(); //