Class Student

java.lang.Object
  |
  +--Student

public class Student
extends java.lang.Object

Definisce un record con i dati dello studente

Version:
1.0

Constructor Summary
Student(int stud_mat, java.lang.String stud_cognome, java.lang.String stud_nome)
          Costruisce il record per lo studente
 
Method Summary
 java.lang.String Get_cognome()
          Ritorna il cognome dello studente
 int Get_mat()
          Ritorna il numero di matricola dello studente
 java.lang.String Get_nome()
          Ritorna il nome dello studente
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Student

public Student(int stud_mat,
               java.lang.String stud_cognome,
               java.lang.String stud_nome)
Costruisce il record per lo studente

Parameters:
stud_mat - numero di matricola dello studente
stud_cognome - cognome dello studente
stud_nome - nome dello studente
Method Detail

Get_mat

public int Get_mat()
Ritorna il numero di matricola dello studente

Returns:
numero di matricola dello studente

Get_cognome

public java.lang.String Get_cognome()
Ritorna il cognome dello studente

Returns:
cognome dello studente

Get_nome

public java.lang.String Get_nome()
Ritorna il nome dello studente

Returns:
nome dello studente