public interface Shape { double calculateArea(); double calculatePerimeter(); String getColor(); void setColor(String color); }