1 19 20 package org.netbeans.modules.web.jspparser; 21 22 import java.io.IOException ; 23 import java.net.URLClassLoader ; 24 import java.util.Map ; 25 import org.netbeans.modules.web.jsps.parserapi.JspParserAPI; 26 import org.openide.filesystems.FileObject; 27 28 39 public interface WebAppParseProxy { 40 41 42 public JspParserAPI.JspOpenInfo getJspOpenInfo(FileObject jspFile, boolean useEditor); 43 44 public JspParserAPI.ParseResult analyzePage(FileObject jspFile, int errorReportingMode); 45 46 public Map getTaglibMap(boolean useEditor) throws IOException ; 47 48 public URLClassLoader getWAClassLoader(); 49 50 51 } 52 | Popular Tags |