1 18 19 package org.apache.struts.webapp.exercise; 20 21 24 public class Coord implements java.io.Serializable  25 { 26 private int x; 27 private int y; 28 29 public Coord() {} 30 31 public Coord(int x, int y) 32 { 33 this.x = x; 34 this.y = y; 35 } 36 37 public int getX() { return (x); } 38 public int getY() { return (y); } 39 40 public void setX(int x) { this.x = x; } 41 public void setY(int y) { this.y = y; } 42 43 public String toString() 44 { return ("Coord[" + "x=" + x + ";y=" + y + "]"); } 45 } 46 | Popular Tags |