Package gui.util

Examples of gui.util.ErreurDeValidation


      if (CMD_OK.equals(cmd)) {   
     
        Vector<ErreurDeValidation> erreursDeValidation = new Vector<ErreurDeValidation>();
       
        if (textLibelle.ChampsTxt.getText().trim().equals("")) {
          erreursDeValidation.add(new ErreurDeValidation(textLibelle.ChampsTxt, "le champ 'type avertissement' est obligatoire."));
        }
     
        Integer degreInfraction = null;     
        try {
          degreInfraction =Integer.parseInt(textDegre.ChampsTxt.getText());
        }
        catch (NumberFormatException ex) {
          erreursDeValidation.add(new ErreurDeValidation(textDegre.ChampsTxt, "le texte introduit pour le d�gr� d'infraction n'est pas un nombre"));
        }
     
        if (!erreursDeValidation.isEmpty()) {
          StringBuffer erreurAffichee = new StringBuffer();
          for (ErreurDeValidation erreurDeValidation : erreursDeValidation) {
View Full Code Here


     
     
      Vector<ErreurDeValidation> erreursDeValidation = new Vector<ErreurDeValidation>();
     
      if (textVal.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textVal.ChampsTxt, "le champ 'valeur' est obligatoire."));
      }
      try {
        typeUnite.setValeur(Integer.parseInt(textVal.ChampsTxt.getText()));
      } catch (NumberFormatException ee) {
        erreursDeValidation.add(new ErreurDeValidation(textVal.ChampsTxt, "le champ 'valeur' ne contient pas un nombre valide."));
      }
           
      if (textLibelle.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textLibelle.ChampsTxt, "le champ 'libell� unit�' est obligatoire."));
      }
     
     
      if (!erreursDeValidation.isEmpty()) {
        StringBuffer erreurAffichee = new StringBuffer();
View Full Code Here

     
     
      Vector<ErreurDeValidation> erreursDeValidation = new Vector<ErreurDeValidation>();
     
      if (textCp.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textCp.ChampsTxt, "le champ 'CP' est obligatoire."));
      }
      try {
        localite.setCp(Integer.parseInt(textCp.ChampsTxt.getText()));
      } catch (NumberFormatException ee) {
        erreursDeValidation.add(new ErreurDeValidation(textCp.ChampsTxt, "le champ 'CP' ne contient pas un nombre valide."));
      }
           
      if (textLocalite.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textLocalite.ChampsTxt, "le champ 'localit�' est obligatoire."));
      }
     
     
      if (!erreursDeValidation.isEmpty()) {
        StringBuffer erreurAffichee = new StringBuffer();
View Full Code Here

    if (CMD_OK.equals(cmd)) {
     
      Vector<ErreurDeValidation> erreursDeValidation = new Vector<ErreurDeValidation>();
     
      if (textLibelle.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textLibelle.ChampsTxt, "le champ 'marque voiture' est obligatoire."));
      }
     
     
      if (!erreursDeValidation.isEmpty()) {
        StringBuffer erreurAffichee = new StringBuffer();
View Full Code Here

    if (CMD_OK.equals(cmd)) {

      Vector<ErreurDeValidation> erreursDeValidation = new Vector<ErreurDeValidation>();
     
      if (textImmatricVoit.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textImmatricVoit.ChampsTxt, " le champ 'num�ro chassis' est obligatoire"));
      }
     
      if (textNumChassisVoit.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textNumChassisVoit.ChampsTxt, " le champ 'num�ro chassis' est obligatoire"));
      }
     
      Date dateAchat;
      try {
        dateAchat = new SimpleDateFormat(gui.MotsCleProjet.DATE_FORMAT).parse(textdateAchatVoit.getText());
        voiture.setDateAchat(dateAchat);
      } catch (ParseException e1) {
        //TaxiGuiUtil.MessageBox(MainWindow.desktop(), "Le format de date est invalide : attendu " + gui.MotsCleProjet.DATE_FORMAT, "Erreur");
        erreursDeValidation.add(new ErreurDeValidation(textdateAchatVoit, "le format date est invalide  attendu' "+ gui.MotsCleProjet.DATE_FORMAT));
       
      }

      Date datePremiereImmatric;
      try {
        datePremiereImmatric = new SimpleDateFormat(gui.MotsCleProjet.DATE_FORMAT).parse(textdatePremImmiVoit.getText());
        voiture.setDatePremiereImmatriculation(datePremiereImmatric);
      } catch (ParseException e1) {
        //TaxiGuiUtil.MessageBox(MainWindow.desktop(), "Le format de date est invalide : attendu " + gui.MotsCleProjet.DATE_FORMAT, "Erreur");
        erreursDeValidation.add(new ErreurDeValidation(textdatePremImmiVoit, "le format date est format invalide attendu :' "+ gui.MotsCleProjet.DATE_FORMAT));
       
      }
     
      if (textNumIdentifAggloVoit.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textNumIdentifAggloVoit.ChampsTxt, "le champ 'num�ro identification agglom�ration' est obligatoire"));
      }
      try {
        Integer.parseInt(textNumIdentifAggloVoit.ChampsTxt.getText());
      } catch (NumberFormatException ex) {
        erreursDeValidation.add(new ErreurDeValidation(textNumIdentifAggloVoit.ChampsTxt, "le champ 'num�ro identification agglom�ration' n'est pas un nombre"));
      }
     
      if (textNumIdentifCentralTelVoit.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textNumIdentifCentralTelVoit.ChampsTxt, "le champ 'num�ro central t�l�phonique' est obligatoire"));
      }
      try {
        Integer.parseInt(textNumIdentifCentralTelVoit.ChampsTxt.getText());
      } catch (NumberFormatException ex) {
        erreursDeValidation.add(new ErreurDeValidation(textNumIdentifCentralTelVoit.ChampsTxt, "le champ 'num�ro central t�l�phonique' n'est pas un nombre"));
      }
     
      if (textKmVoit.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textKmVoit.ChampsTxt, "le champ 'km voiture initial' est obligatoire"));
      }
      try {
        Long.parseLong(textKmVoit.ChampsTxt.getText());
      } catch (NumberFormatException ex) {
        erreursDeValidation.add(new ErreurDeValidation(textKmVoit.ChampsTxt, "le champ 'km voiture initial' n'est pas un nombre"));
      }
     
     
      if (!erreursDeValidation.isEmpty()) {
        StringBuffer erreurAffichee = new StringBuffer();
View Full Code Here

     
     
      Vector<ErreurDeValidation> erreursDeValidation = new Vector<ErreurDeValidation>();
     
      if (textDescrip.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textDescrip, "le champ 'description avertissement' est obligatoire."));
      }
     
      Date dateAverti;
      try {
        dateAverti = new SimpleDateFormat(gui.MotsCleProjet.DATE_FORMAT).parse(textDtAverti.getText());
        avertissement.setDateDebut(dateAverti);
      } catch (ParseException e1) {
       
        erreursDeValidation.add(new ErreurDeValidation(textDtAverti, "le format date est invalide' "+ gui.MotsCleProjet.DATE_FORMAT));
       
        //TaxiGuiUtil.MessageBox(MainWindow.desktop(), "Le format de date est invalide : attendu " + gui.MotsCleProjet.DATE_FORMAT, "Erreur");
      }
      if (!erreursDeValidation.isEmpty()) {
        StringBuffer erreurAffichee = new StringBuffer();
View Full Code Here

      String adresseDepart = null;
      try {
        adresseDepart = textAdrDep.ChampsTxt.getText();
      } catch (Exception ex) {
        erreursDeValidation.add(new ErreurDeValidation(textAdrDep.ChampsTxt, "le texte introduit n'est pas un chiffre"));
      }

      Long kmTaximetreDebut = null;
      try {
        kmTaximetreDebut = Long.parseLong(textKmDep.ChampsTxt.getText());
      } catch (NumberFormatException ex) {
        erreursDeValidation.add(new ErreurDeValidation(textKmDep.ChampsTxt, "le texte introduit pour le nombre de kilom�tre de d�but n'est pas un nombre"));
      }

      Date dateDepart = null;
      try {
        dateDepart = new SimpleDateFormat(gui.MotsCleProjet.DATE_TIME_FORMAT).parse(textHrDep.ChampsTxt.getText());
      } catch (ParseException ex) {
        erreursDeValidation.add(new ErreurDeValidation(textHrDep.ChampsTxt, "Le format de date est invalide : attendu " + gui.MotsCleProjet.DATE_FORMAT));
      }


      String adresseArrivee = null;
      try {
        adresseArrivee = textAdrArriv.ChampsTxt.getText();
      } catch (Exception ex) {
        erreursDeValidation.add(new ErreurDeValidation(textAdrArriv.ChampsTxt, "le texte introduit n'est pas un chiffre"));
      }

      Long kmTaximetreArrive = null;
      try {
        kmTaximetreArrive = Long.parseLong(textKmArriv.ChampsTxt.getText());
      } catch (NumberFormatException ex) {
        erreursDeValidation.add(new ErreurDeValidation(textKmArriv.ChampsTxt, "le texte introduit pour le nombre de kilom�tre de d�but n'est pas un nombre"));
      }


      Date dateArivee = null;
      try {
        dateArivee = new SimpleDateFormat(gui.MotsCleProjet.DATE_TIME_FORMAT).parse(textHrArriv.ChampsTxt.getText());
      } catch (ParseException ex) {
        erreursDeValidation.add(new ErreurDeValidation(textHrArriv.ChampsTxt, "Le format de date est invalide : attendu " + gui.MotsCleProjet.DATE_FORMAT));
      }

      BigDecimal prixCourse = null;
      try {
        prixCourse = new BigDecimal(textPrixCourse.ChampsTxt.getText());
      } catch (NumberFormatException ex) {
        erreursDeValidation.add(new ErreurDeValidation(textPrixCourse.ChampsTxt, "le texte introduit pour le nombre de kilom�tre de d�but n'est pas un nombre"));
      }

      BigDecimal prixSupplementCourse = null;
      try {
        prixSupplementCourse = new BigDecimal(txtPrixSuplTraj.getText());
      } catch (NumberFormatException ex) {
        erreursDeValidation.add(new ErreurDeValidation(textPrixCourse.ChampsTxt, "le texte introduit pour le nombre de kilom�tre de d�but n'est pas un nombre"));
      }

      if (!erreursDeValidation.isEmpty()) {
        StringBuffer erreurAffichee = new StringBuffer();
        for (ErreurDeValidation erreurDeValidation : erreursDeValidation) {
View Full Code Here

    if (CMD_OK.equals(cmd)) {     
     
      Vector<ErreurDeValidation> erreursDeValidation = new Vector<ErreurDeValidation>();

      if (textNom.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textNom.ChampsTxt, "le champ 'nom de chauffeur' est obligatoire."));
      }
     
      if (textPrenom.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textPrenom.ChampsTxt, "le champ 'pr�nom de chauffeur' est obligatoire."));
      }
     
      if (textRue.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textRue, "le champ 'rue' est obligatoire."));
      }
     
      if (textNumeroRue.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textNumeroRue.ChampsTxt, "le champ ' num�ro rue' est obligatoire."));
      }
     
      Date dateNais;
      try {
        dateNais = new SimpleDateFormat(gui.MotsCleProjet.DATE_FORMAT).parse(textDtNais.getText());
        chauffeur.setDtNais(dateNais);
      } catch (ParseException e1) {
        //TaxiGuiUtil.MessageBox(MainWindow.desktop(), "Le format de date est invalide : attendu " + gui.MotsCleProjet.DATE_FORMAT, "Erreur");
        erreursDeValidation.add(new ErreurDeValidation(textDtNais, "Le format de date est invalide : attendu"+ gui.MotsCleProjet.DATE_FORMAT));
      }
     
     
       
       
      if (textAge.getText().trim().equals("") ) {
        erreursDeValidation.add(new ErreurDeValidation(textAge, "L'age est obligatoire"));
      }
      else{
        Integer age =Integer.parseInt(textAge.getText())
        if(age < 21){
          erreursDeValidation.add(new ErreurDeValidation(textAge, "l'�ge ne peut �tre enregistr� car il a moins de 21 ans"));
        }
      }
      try {
        Integer.parseInt(textAge.getText());
      } catch (NumberFormatException ee) {
        erreursDeValidation.add(new ErreurDeValidation(textAge, "L'�ge n'est pas un nombre"));
      }
     
      String numNational =textNumNat.ChampsTxt.getText();
      if (!numNational.matches("[0-9]{1,11}")) {
        erreursDeValidation.add(new ErreurDeValidation(textNumNat.ChampsTxt, "Le num�ro national doit �tre compl�tement num�rique et doit comprendre de 1 � 11 chiffres"));
      }
     
      if (textGsm.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textGsm.ChampsTxt, "le champ 'gsm' est obligatoire."));
      }
     
      if (textNumCpteChauf.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textNumCpteChauf.ChampsTxt, "le champ 'gsm' est obligatoire."));
      }
           
     
      if (textPermis.ChampsTxt.getText().trim().equals("") ) {
        erreursDeValidation.add(new ErreurDeValidation(textPermis.ChampsTxt, "le champ 'type permis ' est obligatoire."));
      }
      else if (!(textPermis.ChampsTxt.getText().equals("b") )) {
        erreursDeValidation.add(new ErreurDeValidation(textPermis.ChampsTxt, "le chauffeur doit disposer de permis  'b' pour pouvoir �tre enregistr�."));
      }
     
      Date datePermis = null;
      try {
        datePermis = new SimpleDateFormat(gui.MotsCleProjet.DATE_FORMAT).parse(textDatePermis.getText());
        chauffeur.setDatePermis(datePermis);
      } catch (ParseException e1) {
        //TaxiGuiUtil.MessageBox(MainWindow.desktop(), "Le format de date est invalide : attendu " + gui.MotsCleProjet.DATE_FORMAT, "Erreur");
        erreursDeValidation.add(new ErreurDeValidation(textDatePermis, "Le format de date est invalide : attendu"+ gui.MotsCleProjet.DATE_FORMAT));
       
      }

      Date dateEchea=null;
      try {
        dateEchea = new SimpleDateFormat(gui.MotsCleProjet.DATE_FORMAT).parse(textDateValidite.getText());
        chauffeur.setDateEcheaPermis(dateEchea);
        if(dateEchea.before(datePermis)){
          erreursDeValidation.add(new ErreurDeValidation(textPermis.ChampsTxt, " la date d'�ch�ance de permis ne peut �tre inf�rieur � la date de permis."));
         
        }
       
      } catch (ParseException e1) {
        //TaxiGuiUtil.MessageBox(MainWindow.desktop(), "Le format de date est invalide : attendu " + gui.MotsCleProjet.DATE_FORMAT, "Erreur");
        erreursDeValidation.add(new ErreurDeValidation(textDatePermis, "Le format de date est invalide : attendu"+ gui.MotsCleProjet.DATE_FORMAT));
       
      }
   
      if (textDureePermis.getText().trim().equals("") ) {
        erreursDeValidation.add(new ErreurDeValidation(textDureePermis, "Dur�e est obligatoire"));
      }
      else{
        Integer dureePermis =Integer.parseInt(textDureePermis.getText())
        if(dureePermis < 5){
          erreursDeValidation.add(new ErreurDeValidation(textDureePermis, "la dur�e de permis est inf�rieur � 5 ans"));
        }
      }
      try {
        Integer.parseInt(textDureePermis.getText());
      } catch (NumberFormatException ee) {
        erreursDeValidation.add(new ErreurDeValidation(textDureePermis, "Dur�e parmis n'est pas un nombre"));
      }
     
     
     
           
     
      if (!(textEtatPermis.getText().equals("valide") )) {
        erreursDeValidation.add(new ErreurDeValidation(textEtatPermis, "le chauffeur doit disposer de permis  'valide' pour pouvoir �tre enregistr�."));
      }
     
      Date dateVisitMed;
      try {
        dateVisitMed = new SimpleDateFormat(gui.MotsCleProjet.DATE_FORMAT).parse(textDateVisitMed.getText());
        chauffeur.setDtVisitMed(dateVisitMed);
      } catch (ParseException e1) {
        //TaxiGuiUtil.MessageBox(MainWindow.desktop(), "Le format de date est invalide : attendu " + gui.MotsCleProjet.DATE_FORMAT, "Erreur");
        erreursDeValidation.add(new ErreurDeValidation(textDateVisitMed, "Le format de date est invalide : attendu"+ gui.MotsCleProjet.DATE_FORMAT));
       
      }
     
      if (textCertifBVM.ChampsTxt.getText().trim().equals("") ) {
        erreursDeValidation.add(new ErreurDeValidation(textCertifBVM.ChampsTxt, "le champ 'certificat bonne vie et moeurs' est obligatoire."));
      }else
        if (!(textCertifBVM.ChampsTxt.getText().equals("vierge") )) {
          erreursDeValidation.add(new ErreurDeValidation(textCertifBVM.ChampsTxt, "le chauffeur n'a pas un certificat de bonne vie et moeurs 'vierge' pour pouvoir �tre enregistr�."));
        }
     
     
       
       
View Full Code Here

    if (CMD_OK.equals(cmd)) {

      Vector<ErreurDeValidation> erreursDeValidation = new Vector<ErreurDeValidation>();
     
      if (textLibelle.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textLibelle.ChampsTxt, "le champ 'r�le user' est obligatoire."));
      }
     
     
      if (!erreursDeValidation.isEmpty()) {
        StringBuffer erreurAffichee = new StringBuffer();
View Full Code Here

     
     
      Vector<ErreurDeValidation> erreursDeValidation = new Vector<ErreurDeValidation>();
     
      if( textNom.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textNom.ChampsTxt, "le champ 'nom' est obligatoire."));
      }
      if( textPrenom.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textPrenom.ChampsTxt, "le champ 'Pr�nnom' est obligatoire."));
     
     
      if (textMail.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textMail.ChampsTxt, "le champ 'mail' est obligatoire."));
      }
     
      if( textLogin.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textLogin.ChampsTxt, "le champ 'login' est obligatoire."));
      }
     
      if( textPwd.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textPwd, "le champ 'marque voiture' est obligatoire."));
      }
     
     
      if (!erreursDeValidation.isEmpty()) {
        StringBuffer erreurAffichee = new StringBuffer();
View Full Code Here

TOP

Related Classes of gui.util.ErreurDeValidation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.