MCPcopy Index your code
hub / github.com/antlr/codebuff / getTemplateNames

Method getTemplateNames

output/java8/1.4.14/STGroup.java:845–854  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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}

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