analyseWriter/src/list/listeRechercheParAnchorPage...

14 lines
244 B
Java

package list;
import cXML.node;
public class listeRechercheParAnchorPageNumber {
public static boolean isRechercheParAnchorPageNumber(node nod) {
if(nod.getNomElt().equals("draw:frame")) return true;
return false;
}
}