/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package asukohapakett; /** * * @author turing */ public class AsukohaAndmed { int x, y, id; String eesnimi; public AsukohaAndmed(int id, int x, int y, String eesnimi){ this.id=id; this.x=x; this.y=y; this.eesnimi=eesnimi; } int kysiX(){return x;} int kysiY(){return y;} int kysiId(){return id;} String kysiEesnimi(){return eesnimi;} @Override public String toString(){return id+" "+x+" "+y+" "+eesnimi;} }