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

Method getTemplateNames

output/java/1.4.14/STGroup.java:848–857  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

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