/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package jpersonastudente; /** * * @author gabriele */ public class Studente extends Persona{ private int matricola; Studente(String n, String c, int m){ super(n,c); matricola = m; } public int getMatricola(){ return matricola; } public void setMatricola(int m){ matricola = m; } @Override public String toString(){ // return nome+" "+ cognome+" mat: "+ matricola; return super.toString()+" mat: "+ matricola; } }