Opened 9 years ago

Closed 9 years ago

#155 closed defect (fixed)

problème pour la validation du masque opération

Reported by: bricesauvaget Owned by: Cédric
Priority: major Milestone: 44 Version_beta_test
Component: Programme Java Version: 0.4
Keywords: Cc:

Description

Erreur interne : probleme de taille des vecteurs vérifiées avant insertion des masques (I1014)

Change History (2)

comment:1 Changed 9 years ago by cedric

Problème règlé... Je pense que c'est un problème de update to head

/

  • verifie les attributs des champs
  • @see commun.IBaseDonnees#verifAttributs()
  • @throws DataFormatException?() */

public boolean verifAttributs() throws DataFormatException? {

boolean ret = false;
if (!Verification.isInteger(this.masque.getIdentifiant(), true)) {

throw new DataFormatException?(Erreur.S27000);

}
if (!Verification.isVectorLength(this.valeurDefaut, 9, false)) {

throw new DataFormatException?(Erreur.I1014);
problème de taille des vecteurs

}
if (!Verification.isVectorLength(this.affichage, 16, false)) {

throw new DataFormatException?(Erreur.I1014);
problème de taille des vecteurs

}

return (ret);

}

comment:2 Changed 9 years ago by cedric

  • Resolution set to fixed
  • Status changed from new to closed
Note: See TracTickets for help on using tickets.