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

Method getTemplateNames

output/java8/1.4.15/STGroup.java:846–855  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

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