All pastes #1941047 Raw Edit

Stuff

public text v1 · immutable
#1941047 ·published 2010-09-15 02:27 UTC
rendered paste body
package Battleship;

public class Coordinate {

	private int x, y;
	
	public Coordinate(int x, int y) {
		this.x = x;
		this.y = y;
	}
	
	public int getX() {
		return x;
	}
	
	public int getY() {
		return y;
	}
	
	public void setX(int x) {
		this.x = x;
	}

	public void setY(int y) {
		this.y = y;
	}
	
	public String toString() {
		String s;
		s = "(" + x + "," + y + ")";
		return s;
	}
}