/**
 * An object of the Point class represents a point in the xy plane.
 * A point has an x coordinate and a y coordinate.
 *
 * Bugs:        none known
 **/
public class Point {

	////////////////////////////////////////
	// Data Members
	////////////////////////////////////////



	






	/**
	 * Default Constructor -- Constructs a point at the origin (0, 0).
	 **/









	/**
	 * Constructs a point with the given x and y coordinates.
	 * @param xValue the x coordinate 
	 * @param yValue the y coordinate
	 **/









	////////////////////////////////////////
	// Accessor Methods
	////////////////////////////////////////
        
	/**
	 * Returns the x coordinate.
	 * @return the x coordinate
	 **/







        
	/**
	 * Returns the y coordinate.
	 * @return the y coordinate
	 **/








	////////////////////////////////////////
	// Mutator Methods
	////////////////////////////////////////
        
	/**
	 * Sets the x coordinate to the given value.
	 * @param newX the new x coordinate
	 **/







        
	/**
	 * Sets the y coordinate to the given value.
	 * @param newY the new y coordinate
	 **/








	////////////////////////////////////////
	// Class Methods
	////////////////////////////////////////
	
	/**
	 * Describes the point class
	 **/










} // end Point class
