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

Method getTemplateNames

output/java/1.4.19/STGroup.java:855–864  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

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