Package gui.util

Examples of gui.util.ErreurDeValidation


        Vector<ErreurDeValidation> erreursDeValidation = new Vector<ErreurDeValidation>();
       
       
       
        if (textLibelle.ChampsTxt.getText().trim().equals("")) {
          erreursDeValidation.add(new ErreurDeValidation(textLibelle.ChampsTxt, "le champ 'type contrat' est obligatoire."));
        }
               
       
       
        if (!HourValidator.isValid(textNbrHrTypCtr.ChampsTxt.getText().trim())) {
          erreursDeValidation.add(new ErreurDeValidation(textNbrHrTypCtr.ChampsTxt, "nombre heure contrat' invalide"));
        }
        try {
          typeContrat.setNombrebHeure(textNbrHrTypCtr.ChampsTxt.getText());
        } catch (NumberFormatException ex) {
          erreursDeValidation.add(new ErreurDeValidation(textNbrHrTypCtr.ChampsTxt, "le champ 'nombre heure contrat' ne contient pas un nombre valide."));
        }
       
        if (textPourcSal.ChampsTxt.getText().trim().equals("")) {
          erreursDeValidation.add(new ErreurDeValidation(textPourcSal.ChampsTxt, "le champ 'pourcentage salaire' est obligatoire."));
        }
        try {
          typeContrat.setPourcentSalaire(new BigDecimal(textPourcSal.ChampsTxt.getText()));
        } catch (NumberFormatException ee) {
          erreursDeValidation.add(new ErreurDeValidation(textPourcSal.ChampsTxt, "le champ 'pourcentage salaire' ne contient pas un nombre valide."));
        }
       
        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 (textNomVille.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textNomVille.ChampsTxt, "le champ 'nom de la ville' est obligatoire."));
      }
     
     
      if (!erreursDeValidation.isEmpty()) {
        StringBuffer erreurAffichee = new StringBuffer();
View Full Code Here

      } catch (ParseException e1) {
        TaxiGuiUtil.MessageBox(MainWindow.desktop(), "Le format de date est invalide : attendu " + gui.MotsCleProjet.DATE_FORMAT, "Erreur");
      }
     
      if (datePaie.after(new Date())){
        erreursDeValidation.add(new ErreurDeValidation(textdtPaie, "Date de paiement facture' doit �tre apr�s la date syst�me"));
       
      }
     
      if (textDescrip.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textDescrip.ChampsTxt, "le champ 'libell�' est obligatoire"));
      }
   
     
      if (textMont.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textMont.ChampsTxt, "le champ 'montant � payer facture' est obligatoire"));
      }
      try {
        new BigDecimal(textMont.ChampsTxt.getText());
      } catch (NumberFormatException ex) {
        erreursDeValidation.add(new ErreurDeValidation(textMont.ChampsTxt, "le champ 'montant � payer' 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 (textReference.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textReference.ChampsTxt, "le champ 'r�f�rence charge' est obligatoire"));
      }
     
      if (textLibelle.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textLibelle.ChampsTxt, "le champ 'description charge' est obligatoire"));
      }
     
      Date dateEmission = null;
      try {
        dateEmission = new SimpleDateFormat(gui.MotsCleProjet.DATE_FORMAT).parse(textdateEmissionCharge.getText());
        chargeVoiture.setDateEmmissionCharge(dateEmission);
      } catch (ParseException e1) {
        //TaxiGuiUtil.MessageBox(MainWindow.desktop(), "Le format de date est invalide : attendu " + gui.MotsCleProjet.DATE_FORMAT, "Erreur");
        erreursDeValidation.add(new ErreurDeValidation(textdateEmissionCharge, "Le format de date est invalide : attendu "+ gui.MotsCleProjet.DATE_FORMAT));
       
      }
     
      Date dateEchea = null;
      try {
        dateEchea = new SimpleDateFormat(gui.MotsCleProjet.DATE_FORMAT).parse(textDateEcheanceChrg.getText());
        chargeVoiture.setDateEcheanceCharge(dateEchea);
      } catch (ParseException e1) {
        //TaxiGuiUtil.MessageBox(MainWindow.desktop(), "Le format de date est invalide : attendu " + gui.MotsCleProjet.DATE_FORMAT, "Erreur");
        erreursDeValidation.add(new ErreurDeValidation(textDateEcheanceChrg, "Le format de date est invalide : attendu "+ gui.MotsCleProjet.DATE_FORMAT));
       
      }
     
      if (dateEmission.after( dateEchea)){
        erreursDeValidation.add(new ErreurDeValidation(textDateEcheanceChrg, "Date d'�ch�ance de la facture' doit �tre apr�s date de la facture"));
       
      }
     
      if (textMontIndicatif.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textMontIndicatif.ChampsTxt, "le champ 'montant indicatif facture' est obligatoire"));
      }
      try {
        new BigDecimal(textMontIndicatif.ChampsTxt.getText());
      } catch (NumberFormatException ex) {
        erreursDeValidation.add(new ErreurDeValidation(textMontIndicatif.ChampsTxt, "le champ 'montant indicatif facture' n'est pas un nombre"));
      }
     
      if (!erreursDeValidation.isEmpty()) {
        StringBuffer erreurAffichee = new StringBuffer();
        for (ErreurDeValidation erreurDeValidation : erreursDeValidation) {
View Full Code Here

     
      String libelle = " ";     
   
        libelle =textLibelle.ChampsTxt.getText().trim();
        if(libelle.equals("")){
          erreursDeValidation.add(new ErreurDeValidation(textLibelle.ChampsTxt, "le champ est vide"));
        }
       
     
     
      Integer nbreUnite = null;     
      try {
        nbreUnite =Integer.parseInt(textNbreUnite.ChampsTxt.getText());
      }
      catch (NumberFormatException ex) {
        erreursDeValidation.add(new ErreurDeValidation(textNbreUnite.ChampsTxt, "le texte introduit pour le nombre unit� n'est pas un nombre"));
      }
     
      if (!erreursDeValidation.isEmpty()) {
        StringBuffer erreurAffichee = new StringBuffer();
        for (ErreurDeValidation erreurDeValidation : erreursDeValidation) {
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.