(Node parent)
| 350 | * Parses an include directive with the following syntax: IncludeDirective ::= ( S Attribute)* |
| 351 | */ |
| 352 | private void parseIncludeDirective(Node parent) throws JasperException { |
| 353 | Attributes attrs = parseAttributes(); |
| 354 | |
| 355 | // Included file expanded here |
| 356 | Node includeNode = new Node.IncludeDirective(attrs, start, parent); |
| 357 | processIncludeDirective(attrs.getValue("file"), includeNode); |
| 358 | } |
| 359 | |
| 360 | /** |
| 361 | * Add a list of files. This is used for implementing include-prelude and include-coda of jsp-config element in |
no test coverage detected