Emulates import directive, except that name must be tempate root relative. It's the same as importLib(getTemplateForImporting(name), namespace) . But, you may want to separately call these two methods, so you can determine the source of exceptions more preci
(String name, String namespace)
| 1524 | * @see #importLib(Template includedTemplate, String namespace) |
| 1525 | */ |
| 1526 | public Namespace importLib(String name, String namespace) |
| 1527 | throws IOException, TemplateException |
| 1528 | { |
| 1529 | return importLib(getTemplateForImporting(name), namespace); |
| 1530 | } |
| 1531 | |
| 1532 | /** |
| 1533 | * Gets a template for importing; used with |
no test coverage detected