createBoundContributor() — spring-boot Function Reference
Architecture documentation for the createBoundContributor() function in ConfigDataEnvironmentContributorTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 882915e3_c8e7_394f_7651_c0ab8564a66b["createBoundContributor()"] 6cfb10fd_9146_6569_d98b_c26e15c0f18f["isActiveWhenPropertiesIsActiveReturnsTrue()"] 6cfb10fd_9146_6569_d98b_c26e15c0f18f -->|calls| 882915e3_c8e7_394f_7651_c0ab8564a66b 73e72e30_7a1e_5dc7_b8a0_e1beae53fb4a["isActiveWhenPropertiesIsNotActiveReturnsFalse()"] 73e72e30_7a1e_5dc7_b8a0_e1beae53fb4a -->|calls| 882915e3_c8e7_394f_7651_c0ab8564a66b cc3a8cc6_6c79_6086_119c_4fd1ac922234["getImportsWhenPropertiesIsNullReturnsEmptyList()"] cc3a8cc6_6c79_6086_119c_4fd1ac922234 -->|calls| 882915e3_c8e7_394f_7651_c0ab8564a66b 1c7caf72_6e8f_9ea2_3b29_e88e3780b4b1["getImportsReturnsImports()"] 1c7caf72_6e8f_9ea2_3b29_e88e3780b4b1 -->|calls| 882915e3_c8e7_394f_7651_c0ab8564a66b a1384fd8_93af_5005_6739_1c40101e5158["getImportsIgnoresEmptyElements()"] a1384fd8_93af_5005_6739_1c40101e5158 -->|calls| 882915e3_c8e7_394f_7651_c0ab8564a66b 03d5f3a3_d6ba_7f03_9b5b_e05abc6771cc["hasUnprocessedImportsWhenNoImportsReturnsFalse()"] 03d5f3a3_d6ba_7f03_9b5b_e05abc6771cc -->|calls| 882915e3_c8e7_394f_7651_c0ab8564a66b a1f3706a_118c_79fe_ee8a_bf7ccedc5187["hasUnprocessedImportsWhenHasNoChildrenForPhaseReturnsTrue()"] a1f3706a_118c_79fe_ee8a_bf7ccedc5187 -->|calls| 882915e3_c8e7_394f_7651_c0ab8564a66b 94f9ceaa_c5e3_c92e_5651_a530c18ba0c3["hasUnprocessedImportsWhenHasChildrenForPhaseReturnsFalse()"] 94f9ceaa_c5e3_c92e_5651_a530c18ba0c3 -->|calls| 882915e3_c8e7_394f_7651_c0ab8564a66b 75dafde3_307c_22f5_914e_1ac25f36b2c4["getChildrenWhenHasNoChildrenReturnsEmptyList()"] 75dafde3_307c_22f5_914e_1ac25f36b2c4 -->|calls| 882915e3_c8e7_394f_7651_c0ab8564a66b cebc89e4_cfba_47c4_5d3d_3a80944b70a1["getChildrenWhenHasChildrenReturnsChildren()"] cebc89e4_cfba_47c4_5d3d_3a80944b70a1 -->|calls| 882915e3_c8e7_394f_7651_c0ab8564a66b 6befae6c_f317_9608_5262_5acef1f92e0e["streamReturnsStream()"] 6befae6c_f317_9608_5262_5acef1f92e0e -->|calls| 882915e3_c8e7_394f_7651_c0ab8564a66b 0d2505dd_c65b_c5b8_f0a5_e9faa5941d97["iteratorWhenSingleContributorReturnsSingletonIterator()"] 0d2505dd_c65b_c5b8_f0a5_e9faa5941d97 -->|calls| 882915e3_c8e7_394f_7651_c0ab8564a66b 38919ff3_9876_915a_7522_7f35a555490c["iteratorWhenTypicalStructureReturnsCorrectlyOrderedIterator()"] 38919ff3_9876_915a_7522_7f35a555490c -->|calls| 882915e3_c8e7_394f_7651_c0ab8564a66b 751029ec_1aec_3792_bda9_b6520a7f1ca5["withChildrenReturnsNewInstanceWithChildren()"] 751029ec_1aec_3792_bda9_b6520a7f1ca5 -->|calls| 882915e3_c8e7_394f_7651_c0ab8564a66b style 882915e3_c8e7_394f_7651_c0ab8564a66b fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/config/ConfigDataEnvironmentContributorTests.java lines 382–385
private ConfigDataEnvironmentContributor createBoundContributor(String location) {
return createBoundContributor(new TestResource(location),
new ConfigData(Collections.singleton(new MockPropertySource())), 0);
}
Domain
Subdomains
Calls
Called By
- bindCreatesImportedContributor()
- bindWhenConfigDataHasIgnoreImportsOptionsCreatesImportedContributorWithoutImports()
- getChildrenWhenHasChildrenReturnsChildren()
- getChildrenWhenHasNoChildrenReturnsEmptyList()
- getImportsIgnoresEmptyElements()
- getImportsReturnsImports()
- getImportsWhenPropertiesIsNullReturnsEmptyList()
- hasUnprocessedImportsWhenHasChildrenForPhaseReturnsFalse()
- hasUnprocessedImportsWhenHasNoChildrenForPhaseReturnsTrue()
- hasUnprocessedImportsWhenNoImportsReturnsFalse()
- isActiveWhenPropertiesIsActiveReturnsTrue()
- isActiveWhenPropertiesIsNotActiveReturnsFalse()
- iteratorWhenSingleContributorReturnsSingletonIterator()
- iteratorWhenTypicalStructureReturnsCorrectlyOrderedIterator()
- ofCreatesRootContributor()
- streamReturnsStream()
- withChildrenAfterProfileActivationMovesProfileSpecificChildren()
- withChildrenReturnsNewInstanceWithChildren()
- withReplacementReplacesChild()
Source
Frequently Asked Questions
What does createBoundContributor() do?
createBoundContributor() is a function in the spring-boot codebase.
What does createBoundContributor() call?
createBoundContributor() calls 1 function(s): TestResource.
What calls createBoundContributor()?
createBoundContributor() is called by 19 function(s): bindCreatesImportedContributor, bindWhenConfigDataHasIgnoreImportsOptionsCreatesImportedContributorWithoutImports, getChildrenWhenHasChildrenReturnsChildren, getChildrenWhenHasNoChildrenReturnsEmptyList, getImportsIgnoresEmptyElements, getImportsReturnsImports, getImportsWhenPropertiesIsNullReturnsEmptyList, hasUnprocessedImportsWhenHasChildrenForPhaseReturnsFalse, and 11 more.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free