67393f4
1 2 3 4 5 6 7 8 9 10 11 12 13
public class Point extends Shape { public double x; public double y; public Point(double x, double y) { this.x = x; this.y = y; } public String getName() { return "Point"; } }