public class TestShape { public static void drawShape(Shape s) { s.draw(); } public static void main(String[] args) { Shape shape = new Shape(); Circle circle = new Circle(); Rectangle rectangle = new Rectangle(); drawShape(shape); drawShape(circle); drawShape(rectangle); } }