/*
 * 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 Adresse {
    /// numéro et nom de rue, voie, etc...
    String rue;
    /// code postal
    String codePostal;
    /// ville
    String ville;
}
