jffConnexion et jffProfession différence
entre médecin et visiteur medical
This commit is contained in:
		@@ -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);
 | 
			
		||||
            }
 | 
			
		||||
        });
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -95,6 +95,9 @@
 | 
			
		||||
      <Properties>
 | 
			
		||||
        <Property name="text" type="java.lang.String" value="visiteur medical"/>
 | 
			
		||||
      </Properties>
 | 
			
		||||
      <Events>
 | 
			
		||||
        <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jBvisiteurMedicalActionPerformed"/>
 | 
			
		||||
      </Events>
 | 
			
		||||
    </Component>
 | 
			
		||||
    <Component class="javax.swing.JButton" name="jBquitter">
 | 
			
		||||
      <Properties>
 | 
			
		||||
 
 | 
			
		||||
@@ -45,6 +45,11 @@ public class jffProfession extends javax.swing.JFrame {
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
        jBvisiteurMedical.setText("visiteur medical");
 | 
			
		||||
        jBvisiteurMedical.addActionListener(new java.awt.event.ActionListener() {
 | 
			
		||||
            public void actionPerformed(java.awt.event.ActionEvent evt) {
 | 
			
		||||
                jBvisiteurMedicalActionPerformed(evt);
 | 
			
		||||
            }
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
        jBquitter.setIcon(new javax.swing.ImageIcon(getClass().getResource("/img/quitter.png"))); // NOI18N
 | 
			
		||||
        jBquitter.setText("Quitter");
 | 
			
		||||
@@ -103,13 +108,17 @@ public class jffProfession extends javax.swing.JFrame {
 | 
			
		||||
    }// </editor-fold>//GEN-END:initComponents
 | 
			
		||||
 | 
			
		||||
    private void jBpraticienActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBpraticienActionPerformed
 | 
			
		||||
        // TODO add your handling code here:
 | 
			
		||||
        new jffConnexion(0).setVisible(true);      
 | 
			
		||||
    }//GEN-LAST:event_jBpraticienActionPerformed
 | 
			
		||||
 | 
			
		||||
    private void jBquitterActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBquitterActionPerformed
 | 
			
		||||
        System.exit(0);
 | 
			
		||||
    }//GEN-LAST:event_jBquitterActionPerformed
 | 
			
		||||
 | 
			
		||||
    private void jBvisiteurMedicalActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBvisiteurMedicalActionPerformed
 | 
			
		||||
        new jffConnexion(1).setVisible(true);
 | 
			
		||||
    }//GEN-LAST:event_jBvisiteurMedicalActionPerformed
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * @param args the command line arguments
 | 
			
		||||
     */
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user