mergingOfAdditionalDeprecation() — spring-boot Function Reference
Architecture documentation for the mergingOfAdditionalDeprecation() function in MergeMetadataGenerationTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 80b8d0af_5b68_c5dc_cc48_32a6741cefe3["mergingOfAdditionalDeprecation()"] 2c7f4fa9_99db_9b88_9e01_273bde231203["buildPropertyDeprecations()"] 80b8d0af_5b68_c5dc_cc48_32a6741cefe3 -->|calls| 2c7f4fa9_99db_9b88_9e01_273bde231203 14d469eb_4ba7_e784_b4d8_11c5e9d3b187["newProperty()"] 80b8d0af_5b68_c5dc_cc48_32a6741cefe3 -->|calls| 14d469eb_4ba7_e784_b4d8_11c5e9d3b187 603d28af_5a6a_6c37_e34e_ce2000af8852["ItemDeprecation()"] 80b8d0af_5b68_c5dc_cc48_32a6741cefe3 -->|calls| 603d28af_5a6a_6c37_e34e_ce2000af8852 56afd5ff_85de_d8b5_5901_a76923fe9704["has()"] 80b8d0af_5b68_c5dc_cc48_32a6741cefe3 -->|calls| 56afd5ff_85de_d8b5_5901_a76923fe9704 a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc["withProperty()"] 80b8d0af_5b68_c5dc_cc48_32a6741cefe3 -->|calls| a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc 24e98b01_1aa8_27ae_189f_3eec90e0a528["withDeprecation()"] 80b8d0af_5b68_c5dc_cc48_32a6741cefe3 -->|calls| 24e98b01_1aa8_27ae_189f_3eec90e0a528 style 80b8d0af_5b68_c5dc_cc48_32a6741cefe3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/MergeMetadataGenerationTests.java lines 211–219
@Test
void mergingOfAdditionalDeprecation() throws Exception {
String deprecations = buildPropertyDeprecations(
ItemMetadata.newProperty("simple", "wrongName", "java.lang.String", null, null, null, null,
new ItemDeprecation("Lame name.", "simple.the-name", "1.2.3")));
ConfigurationMetadata metadata = compile(deprecations, SimpleProperties.class);
assertThat(metadata).has(Metadata.withProperty("simple.wrong-name", String.class)
.withDeprecation("Lame name.", "simple.the-name", "1.2.3"));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does mergingOfAdditionalDeprecation() do?
mergingOfAdditionalDeprecation() is a function in the spring-boot codebase.
What does mergingOfAdditionalDeprecation() call?
mergingOfAdditionalDeprecation() calls 6 function(s): ItemDeprecation, buildPropertyDeprecations, has, newProperty, withDeprecation, withProperty.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free