analyseWriter/src/calcul/listeAttributsAnalyseWriter...

37 lines
1.3 KiB
Java
Raw Normal View History

2022-06-11 12:10:28 +02:00
package calcul;
2022-06-04 15:43:08 +02:00
public class listeAttributsAnalyseWriter {
public listeAttributsAnalyseWriter() {
}
public static boolean isAttributAnalyseWriter(String attribut) {
if(attribut.equals("evaluer")) return true;
if(attribut.equals("addmenu")) return true;
if(attribut.equals("saut")) return true;
if(attribut.equals("titre")) return true;
if(attribut.equals("titre1")) return true;
if(attribut.equals("titre2")) return true;
if(attribut.equals("titre3")) return true;
if(attribut.equals("poids")) return true;
if(attribut.equals("analyseStyle")) return true;
if(attribut.equals("allContent")) return true;
if(attribut.equals("index")) return true;
if(attribut.equals("recherche_index")) return true;
if(attribut.equals("recherche_contenu_exact")) return true;
if(attribut.equals("evalNameNode")) return true;
2022-06-06 18:59:42 +02:00
if(attribut.equals("styletitre")) return true; //ancienne version, il faudra les supprimer
2022-06-04 15:43:08 +02:00
if(attribut.equals("evalNameCreator")) return true;
if(attribut.equals("evalNameInitialCreator")) return true;
if(attribut.equals("recherche_anchor-page-number")) return true;
if(attribut.equals("recherche_contenu_plus_proche_voisin")) return true;
2022-06-12 09:39:22 +02:00
if(attribut.equals("numero")) return true;
if(attribut.equals("numeroabsolue")) return true;
2022-06-04 15:43:08 +02:00
return false;
}
}