/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package mypkg; /** * * @author javamobile */ public class Paevaandmed { int kood; String nimetus; public Paevaandmed(int kood, String nimetus){ this.kood=kood; this.nimetus=nimetus; } public int getKood(){return kood;} public String getNimetus(){return nimetus;} }