// DrawEx5 Example // Source code file: Point.java package it372.drawex5; import java.util.Locale; public class Point { private int x; private int y; public Point(int x, int y) { this.x = x; this.y = y; } public int getX() { return x; } public int getY() { return y; } public String toString( ) { return String.format(Locale.ENGLISH, "(%d, %d)", x, y); } }