
public class ColorPoint extends Point {

  private final String color;

  public ColorPoint(int x, int y, String color) {
    super(x,y);
    this.color = color;
  }

  protected String makeName() {
    return super.makeName() + ":" + color;
  }

}


