jffConnexion et jffProfession différence

entre médecin et visiteur medical
This commit is contained in:
2025-03-12 11:56:00 +01:00
parent ba7e7c4b9b
commit 002e6597c6
3 changed files with 17 additions and 4 deletions

View File

@@ -9,12 +9,13 @@ package presentation;
* @author emile.lalorcey
*/
public class jffConnexion extends javax.swing.JFrame {
int profession;
/**
* Creates new form jffConnexion
*/
public jffConnexion() {
public jffConnexion(int indice) {
initComponents();
this.profession = indice;
}
/**
@@ -191,7 +192,7 @@ public class jffConnexion extends javax.swing.JFrame {
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new jffConnexion().setVisible(true);
new jffConnexion(1).setVisible(true);
}
});
}