Home / Function/ getChildNodeTextContent() — spring-boot Function Reference

getChildNodeTextContent() — spring-boot Function Reference

Architecture documentation for the getChildNodeTextContent() function in CustomLayersProvider.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  11efb941_46e1_c731_b592_b04048e8a6cf["getChildNodeTextContent()"]
  34098d7f_40c8_1c95_7080_c6ca20ac64ad["getLayers()"]
  34098d7f_40c8_1c95_7080_c6ca20ac64ad -->|calls| 11efb941_46e1_c731_b592_b04048e8a6cf
  c40bb1cf_52c5_84fd_0eb7_beffe93453c8["getSelector()"]
  c40bb1cf_52c5_84fd_0eb7_beffe93453c8 -->|calls| 11efb941_46e1_c731_b592_b04048e8a6cf
  afab24dc_a8db_69cc_85b0_613ed8604f6e["getLibrarySelector()"]
  afab24dc_a8db_69cc_85b0_613ed8604f6e -->|calls| 11efb941_46e1_c731_b592_b04048e8a6cf
  style 11efb941_46e1_c731_b592_b04048e8a6cf fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

build-plugin/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/CustomLayersProvider.java lines 149–159

	private List<String> getChildNodeTextContent(Element element, String tagName) {
		List<String> patterns = new ArrayList<>();
		NodeList nodes = element.getElementsByTagName(tagName);
		for (int i = 0; i < nodes.getLength(); i++) {
			Node node = nodes.item(i);
			if (node instanceof Element) {
				patterns.add(node.getTextContent());
			}
		}
		return patterns;
	}

Domain

Subdomains

Frequently Asked Questions

What does getChildNodeTextContent() do?
getChildNodeTextContent() is a function in the spring-boot codebase.
What calls getChildNodeTextContent()?
getChildNodeTextContent() is called by 3 function(s): getLayers, getLibrarySelector, getSelector.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free