32 lines
556 B
Java
32 lines
556 B
Java
/*
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
|
*/
|
|
package Metier;
|
|
|
|
/**
|
|
*
|
|
* @author medhi.rodrigues
|
|
*/
|
|
public class Observation {
|
|
/**
|
|
* observation = l'observation d'un médicament
|
|
*/
|
|
private String observation;
|
|
|
|
|
|
|
|
//LES GUETTEUR
|
|
/**
|
|
* @return the observation
|
|
*/
|
|
public String getObservation() {
|
|
return observation;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|