try {
if(include){
IPath path = new Path(webapproot).append("/WEB-INF/web.xml");
IFile webXML = file.getProject().getFile(path);
if(webXML!=null && webXML.exists()){
FuzzyXMLDocument doc = new FuzzyXMLParser(false).parse(webXML.getContents());
FuzzyXMLNode[] nodes = HTMLUtil.selectXPathNodes(doc.getDocumentElement(),
"/web-app/jsp-config/jsp-property-group[url-pattern='*.jsp']");
for(int i=0;i<nodes.length;i++){
FuzzyXMLNode[] includes = HTMLUtil.selectXPathNodes((FuzzyXMLElement)nodes[i],"/include-prelude|/include-coda");
for(int j=0;j<includes.length;j++){
IFile incFile = basedir.getFile(new Path(((FuzzyXMLElement)includes[j]).getValue()));