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