MCPcopy Create free account
hub / github.com/antlr/codebuff / getTemplateNames

Method getTemplateNames

output/java/1.4.15/STGroup.java:849–858  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 5

entrySetMethod · 0.65
getValueMethod · 0.65
addMethod · 0.65
getKeyMethod · 0.65
loadMethod · 0.45

Tested by

no test coverage detected