()
| 853 | } |
| 854 | |
| 855 | public Set<String> getTemplateNames() { |
| 856 | load(); |
| 857 | HashSet<String> result = new HashSet<String>(); |
| 858 | for (Map.Entry<String, CompiledST> e : templates.entrySet()) { |
| 859 | if ( e.getValue()!= NOT_FOUND_ST ) { |
| 860 | result.add(e.getKey()); |
| 861 | } |
| 862 | } |
| 863 | return result; |
| 864 | } |
| 865 | } |