public abstract class Shape { protected int color; public Shape(int _col) { this.color = _col; } public abstract double getArea(); public int getColor() { return this.color; } public void render() { System.out.println("rendering shape" ) ; } }