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