()
| 847 | } |
| 848 | |
| 849 | public Set<String> getTemplateNames() { |
| 850 | load(); |
| 851 | HashSet<String> result = new HashSet<String>(); |
| 852 | for (Map.Entry<String, CompiledST> e : templates.entrySet()) { |
| 853 | if ( e.getValue()!= NOT_FOUND_ST ) { |
| 854 | result.add(e.getKey()); |
| 855 | } |
| 856 | } |
| 857 | return result; |
| 858 | } |
| 859 | } |