// ZooMap app // Source code file: Point.java package it372.smiths.zoomap; public class Point { private int id; private int x; private int y; public Point(int id, int x, int y) { this.id = id; this.x = x; this.y = y; } public int getId( ) { return id; } public int getX( ) { return x; } public int getY( ) { return y; } @Override public String toString( ) { return String.format("%d,%d,%d", id, x, y); } }