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

Method getTemplateNames

output/java/1.4.17/STGroup.java:850–859  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

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