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

Method getTemplateNames

output/java/1.4.12/STGroup.java:835–844  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

833 }
834
835 public Set<String> getTemplateNames() {
836 load();
837 HashSet<String> result = new HashSet<String>();
838 for (Map.Entry<String, CompiledST> e : templates.entrySet()) {
839 if ( e.getValue()!= NOT_FOUND_ST ) {
840 result.add(e.getKey());
841 }
842 }
843 return result;
844 }
845}

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