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

Method setJspFiles

java/org/apache/jasper/JspC.java:917–926  ·  view source on GitHub ↗

Parses comma-separated list of JSP files to be processed. If the argument is null, nothing is done. Each file is interpreted relative to uriroot, unless it is absolute, in which case it must start with uriroot. @param jspFiles Comma-separated list of JSP files to be processed

(final String jspFiles)

Source from the content-addressed store, hash-verified

915 * @param jspFiles Comma-separated list of JSP files to be processed
916 */
917 public void setJspFiles(final String jspFiles) {
918 if (jspFiles == null) {
919 return;
920 }
921
922 StringTokenizer tok = new StringTokenizer(jspFiles, ",");
923 while (tok.hasMoreTokens()) {
924 pages.add(tok.nextToken());
925 }
926 }
927
928 /**
929 * Sets the compile flag.

Callers

nothing calls this directly

Calls 3

addMethod · 0.65
hasMoreTokensMethod · 0.45
nextTokenMethod · 0.45

Tested by

no test coverage detected