Correction sur l'ajout du node setting dans le node fichier.
Il ne s'ajoutait pas.
This commit is contained in:
pablo rodriguez 2023-03-21 16:53:14 +01:00
parent ca5c13ab93
commit ab82bbd503
6 changed files with 8 additions and 4 deletions

View File

@ -12,6 +12,6 @@
<classpathentry kind="lib" path="C:/Users/pabr6/git/analyseWriter/MEPTL/miglayout15-swing.jar"/> <classpathentry kind="lib" path="C:/Users/pabr6/git/analyseWriter/MEPTL/miglayout15-swing.jar"/>
<classpathentry kind="lib" path="jgoodies-forms-1.8.0.jar" sourcepath="jgoodies-forms-1.8.0-sources.jar"/> <classpathentry kind="lib" path="jgoodies-forms-1.8.0.jar" sourcepath="jgoodies-forms-1.8.0-sources.jar"/>
<classpathentry kind="lib" path="C:/Users/pabr6/eclipse-workspace/Exportation documentation analyseWriter/plugins/documentation.analyseWriter_1.0.0.202212032022.jar"/> <classpathentry kind="lib" path="C:/Users/pabr6/eclipse-workspace/Exportation documentation analyseWriter/plugins/documentation.analyseWriter_1.0.0.202212032022.jar"/>
<classpathentry kind="lib" path="C:/Users/pabr6/eclipse-workspace/cXML.jar"/> <classpathentry kind="lib" path="C:/Users/pabr6/eclipse-workspace/cXML.jar" sourcepath="/cXML"/>
<classpathentry kind="output" path="bin"/> <classpathentry kind="output" path="bin"/>
</classpath> </classpath>

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -420,12 +420,16 @@ public class ecritureSujet {
// ajoute le node setting au node sujet // ajoute le node setting au node sujet
sujet.getNodes().add(addTranlation()); setting.getNodes().add(addTranlation());
//fermeture du node //fermeture du node
setting.setClose(true); setting.setClose(true);
// Ajoute le node setting au sujet
sujet.getNodes().add(setting);
return sujet; return sujet;
} }

View File

@ -85,7 +85,7 @@ public baseDonneesEvaluations() {
node fichier = commandes.evaluationsBase.getNodes().get(i).retourneFirstEnfantsByName("fichier"); node fichier = commandes.evaluationsBase.getNodes().get(i).retourneFirstEnfantsByName("fichier");
data[i][2] = fichier.getAttributs().get("titre"); data[i][2] = fichier.getAttributs().get("titre");
data[i][3] = fichier.getAttributs().get("metaSujet"); data[i][3] = fichier.getAttributs().get("metaSujet");
data[i][4] = fichier.getAttributs().get("filenameAnalyse"); data[i][4] = fichier.getAttributs().get("analysis_filename");
} }