()
| 833 | } |
| 834 | |
| 835 | public Set<String> getTemplateNames() { |
| 836 | load(); |
| 837 | HashSet<String> result = new HashSet<String>(); |
| 838 | for (Map.Entry<String, CompiledST> e : templates.entrySet()) { |
| 839 | if ( e.getValue()!= NOT_FOUND_ST ) { |
| 840 | result.add(e.getKey()); |
| 841 | } |
| 842 | } |
| 843 | return result; |
| 844 | } |
| 845 | } |