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