public class ShapeTest { public static void drawShape(DrawShape s) { s.draw(); } public static void main(String[] args) { DrawShape circle = new DrawCircle(); DrawShape rectangle = new DrawRectangle(); drawShape(circle); drawShape(rectangle); } }