// Marty Stepp, CSE 142, Autumn 2009 // This file defines a new type of objects named Point. // Each Point object contains two int fields inside it named x and y. // Point objects do not have any behavior (methods) yet. public class Point { int x; // each Point object should have an int x and y in it int y; }