// Fig. 7.5: Point.java // Definition of class Point public class Point { protected double x, y; // coordinates of the Point // constructor public Point( double a, double b ) { setPoint( a, b ); System.out.println( "Point constructor: " + toString() ); } // finalizer public void finalize() { System.out.println( "Point finalizer: " + toString() ); } // Set x and y coordinates of Point public void setPoint( double a, double b ) { x = a; y = b; } // get x coordinate public double getX() { return x; } // get y coordinate public double getY() { return y; } // convert the point into a String representation public String toString() { return "[" + x + ", " + y + "]"; } }