()
| 823 | } |
| 824 | |
| 825 | public Set<String> getTemplateNames() { |
| 826 | load(); |
| 827 | HashSet<String> result = new HashSet<String>(); |
| 828 | for (Map.Entry<String, CompiledST> e : templates.entrySet()) { |
| 829 | if ( e.getValue()!= NOT_FOUND_ST ) { |
| 830 | result.add(e.getKey()); |
| 831 | } |
| 832 | } |
| 833 | return result; |
| 834 | } |
| 835 | } |