MAJ V4.4.1 (amélioration de la rechercher des nodes doublons par la
méthode du plus proche voisin)
This commit is contained in:
parent
0c81bbb10f
commit
d6a21bdc7f
@ -12,6 +12,6 @@
|
||||
<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="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"/>
|
||||
</classpath>
|
||||
|
Binary file not shown.
2
bin/.gitignore
vendored
2
bin/.gitignore
vendored
@ -1,5 +1,3 @@
|
||||
/MEPTL/
|
||||
/calcul/
|
||||
/evaluer/
|
||||
/fenetres/
|
||||
/list/
|
||||
|
Binary file not shown.
@ -286,15 +286,15 @@ public class rechercherUnNodeStudent {
|
||||
}else {
|
||||
|
||||
//méthode texte rigoureusement exact
|
||||
if(nod2Student!=null) if(nodStudent==null) nodStudent = a.retourneFirstNameNodeByFindContentExactlyWithDoublon(nod2Student.getNodes(), valueAttribut, nameNode, nodSujet);
|
||||
if(nod2Student!=null) if(nodStudent==null) nodStudent = a.retourneLeNodeDoublonStudent(nod2Student.getNodes(), valueAttribut, nameNode, nodSujet);
|
||||
if(nod2Student!=null) if(nodStudent==null) {
|
||||
ArrayList<node> tousLesfreres = nod2Student.retourneTousLesFreres(); //Retourne tous les frère d'une même page
|
||||
for(int i = 0 ; i < tousLesfreres.size();i++) {
|
||||
if(nod2Student!=null) if(nodStudent==null) nodStudent = a.retourneFirstNameNodeByFindContentExactlyWithDoublon(tousLesfreres.get(i).getNodes(), valueAttribut, nameNode, nodSujet);
|
||||
if(nod2Student!=null) if(nodStudent==null) nodStudent = a.retourneLeNodeDoublonStudent(tousLesfreres.get(i).getNodes(), valueAttribut, nameNode, nodSujet);
|
||||
}
|
||||
}
|
||||
if(nod1Student!=null) if(nodStudent==null) nodStudent = a.retourneFirstNameNodeByFindContentExactlyWithDoublon(nod1Student.getNodes(), valueAttribut, nameNode, nodSujet);
|
||||
if(nod0Student!=null) if(nodStudent==null) nodStudent = a.retourneFirstNameNodeByFindContentExactlyWithDoublon(nod0Student.getNodes(), valueAttribut, nameNode, nodSujet);
|
||||
if(nod1Student!=null) if(nodStudent==null) nodStudent = a.retourneLeNodeDoublonStudent(nod1Student.getNodes(), valueAttribut, nameNode, nodSujet);
|
||||
if(nod0Student!=null) if(nodStudent==null) nodStudent = a.retourneLeNodeDoublonStudent(nod0Student.getNodes(), valueAttribut, nameNode, nodSujet);
|
||||
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user