MCPcopy Index your code
hub / github.com/apache/tomcat / JspReader

Method JspReader

java/org/apache/jasper/compiler/JspReader.java:70–74  ·  view source on GitHub ↗

Constructor. @param ctxt The compilation context @param fname The file name @param encoding The file encoding @param jar ? @param err The error dispatcher @throws JasperException If a Jasper-internal error occurs @throws FileNotFoundException If the JSP file is not found (or

(JspCompilationContext ctxt, String fname, String encoding, Jar jar, ErrorDispatcher err)

Source from the content-addressed store, hash-verified

68 * @throws IOException If an IO-level error occurs, e.g. reading the file
69 */
70 JspReader(JspCompilationContext ctxt, String fname, String encoding, Jar jar, ErrorDispatcher err)
71 throws JasperException, FileNotFoundException, IOException {
72
73 this(ctxt, fname, JspUtil.getReader(fname, encoding, jar, ctxt, err), err);
74 }
75
76 /**
77 * Constructor: same as above constructor but with initialized reader to the file given.

Callers

nothing calls this directly

Calls 11

getReaderMethod · 0.95
handleThrowableMethod · 0.95
getMessageMethod · 0.95
toCharArrayMethod · 0.80
readMethod · 0.65
writeMethod · 0.65
closeMethod · 0.65
errorMethod · 0.65
jspErrorMethod · 0.65
isDebugEnabledMethod · 0.65
debugMethod · 0.65

Tested by

no test coverage detected