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