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

Method getTemplateNames

output/java8/1.4.19/STGroup.java:847–856  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 5

loadMethod · 0.95
entrySetMethod · 0.65
getValueMethod · 0.65
addMethod · 0.65
getKeyMethod · 0.65

Tested by

no test coverage detected