MAJ (V4.3.1 bug corrigé sur les enchaînements de style:style non évalués
et évalués)
This commit is contained in:
parent
9928813fb3
commit
3b2537054a
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -990,6 +990,8 @@ public class analyseLesNodesPrincipaux {
|
|||||||
//** Parcours les nodes enfants du node <style:style> **
|
//** Parcours les nodes enfants du node <style:style> **
|
||||||
//******************************************************
|
//******************************************************
|
||||||
for(int i = 0 ; i < nodSujetParagraph.getNodes().size(); i++) {
|
for(int i = 0 ; i < nodSujetParagraph.getNodes().size(); i++) {
|
||||||
|
if(nodSujetParagraph.getNodes().get(i).getAttributs().get("evaluer")!=null) {
|
||||||
|
if(nodSujetParagraph.getNodes().get(i).getAttributs().get("evaluer").equals("true")) {
|
||||||
if(nodSujetParagraph.getNodes().get(i).getNomElt().equals("style:style")) {
|
if(nodSujetParagraph.getNodes().get(i).getNomElt().equals("style:style")) {
|
||||||
int pointDebut = evaluation.getPointsClass();
|
int pointDebut = evaluation.getPointsClass();
|
||||||
int pointTotalDebut = evaluation.getPointTotal();
|
int pointTotalDebut = evaluation.getPointTotal();
|
||||||
@ -999,6 +1001,7 @@ public class analyseLesNodesPrincipaux {
|
|||||||
paragraph.setNomElt("paragraph");
|
paragraph.setNomElt("paragraph");
|
||||||
paragraph.getAttributs().put("name", nomDuParagraph);
|
paragraph.getAttributs().put("name", nomDuParagraph);
|
||||||
|
|
||||||
|
|
||||||
//********************************************************************************************
|
//********************************************************************************************
|
||||||
//** Ajoute l'information si le style est evaluer à travers evalStyle dans la structurepage **
|
//** Ajoute l'information si le style est evaluer à travers evalStyle dans la structurepage **
|
||||||
//********************************************************************************************
|
//********************************************************************************************
|
||||||
@ -1039,6 +1042,8 @@ public class analyseLesNodesPrincipaux {
|
|||||||
nodparagraphs.getNodes().add(paragraph);
|
nodparagraphs.getNodes().add(paragraph);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
//****************************************************************
|
//****************************************************************
|
||||||
//** Insère les attributs des points dans les node de l'analyse **
|
//** Insère les attributs des points dans les node de l'analyse **
|
||||||
//****************************************************************
|
//****************************************************************
|
||||||
|
@ -362,6 +362,11 @@ public class evaluation {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retourne la valeur minimale d'un intervale.
|
||||||
|
* @param Intervale
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
public static double TraitementIntervaleRetourneValeurMinimale(String Intervale) {
|
public static double TraitementIntervaleRetourneValeurMinimale(String Intervale) {
|
||||||
String Text[] = Intervale.split("→");
|
String Text[] = Intervale.split("→");
|
||||||
|
|
||||||
@ -370,15 +375,17 @@ public class evaluation {
|
|||||||
|
|
||||||
// remplacement de toutes les occurrences par ""
|
// remplacement de toutes les occurrences par ""
|
||||||
Text[0]= p.matcher(Text[0]).replaceAll("");
|
Text[0]= p.matcher(Text[0]).replaceAll("");
|
||||||
Text[1] = p.matcher(Text[1]).replaceAll("");
|
|
||||||
|
|
||||||
|
|
||||||
double b0 = Double.valueOf(Text[0]);
|
double b0 = Double.valueOf(Text[0]);
|
||||||
// double b1 = Double.valueOf(Text[1]);
|
|
||||||
|
|
||||||
return b0;
|
return b0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retourne la valeur maximale d'un intervalle.
|
||||||
|
* @param Intervale
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
public static double TraitementIntervaleRetourneValeurMaximale(String Intervale) {
|
public static double TraitementIntervaleRetourneValeurMaximale(String Intervale) {
|
||||||
String Text[] = Intervale.split("→");
|
String Text[] = Intervale.split("→");
|
||||||
|
|
||||||
@ -389,8 +396,6 @@ public class evaluation {
|
|||||||
Text[0]= p.matcher(Text[0]).replaceAll("");
|
Text[0]= p.matcher(Text[0]).replaceAll("");
|
||||||
Text[1] = p.matcher(Text[1]).replaceAll("");
|
Text[1] = p.matcher(Text[1]).replaceAll("");
|
||||||
|
|
||||||
|
|
||||||
// double b0 = Double.valueOf(Text[0]);
|
|
||||||
double b1 = Double.valueOf(Text[1]);
|
double b1 = Double.valueOf(Text[1]);
|
||||||
|
|
||||||
return b1;
|
return b1;
|
||||||
|
Loading…
Reference in New Issue
Block a user