Creates a new TLD scanner instance. @param context The servlet context @param namespaceAware Whether to enable namespace awareness @param validate Whether to validate TLD files @param blockExternal Whether to block external entities @return the new TLD scanner
(JspCServletContext context, boolean namespaceAware, boolean validate,
boolean blockExternal)
| 1753 | * @return the new TLD scanner |
| 1754 | */ |
| 1755 | protected TldScanner newTldScanner(JspCServletContext context, boolean namespaceAware, boolean validate, |
| 1756 | boolean blockExternal) { |
| 1757 | return new TldScanner(context, namespaceAware, validate, blockExternal); |
| 1758 | } |
| 1759 | |
| 1760 | |
| 1761 | /** |