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)
| 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. |
nothing calls this directly
no test coverage detected