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

Method getTemplateNames

output/java8/1.4.13/STGroup.java:825–834  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

823 }
824
825 public Set<String> getTemplateNames() {
826 load();
827 HashSet<String> result = new HashSet<String>();
828 for (Map.Entry<String, CompiledST> e : templates.entrySet()) {
829 if ( e.getValue()!= NOT_FOUND_ST ) {
830 result.add(e.getKey());
831 }
832 }
833 return result;
834 }
835}

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