/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package database.patient;

/**
 *
 * @author Emmanuel Promayon, (c) UJF - Polytech'Grenoble - 2011
 */
public class Patient {
    /// le nom du patient (chaine de caractères)
    String nom;
    /// l'année de naissance
    int annéeDeNaissance;
    /// son adresse
    Adresse adresse;    
}
