deprecatedOnUnrelatedSetter() — spring-boot Function Reference
Architecture documentation for the deprecatedOnUnrelatedSetter() function in ConfigurationMetadataAnnotationProcessorTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD a4438679_6d8d_9137_cff6_e0873f00d5a0["deprecatedOnUnrelatedSetter()"] 4e7738f0_ea94_abd8_5384_e7be1344cace["compile()"] a4438679_6d8d_9137_cff6_e0873f00d5a0 -->|calls| 4e7738f0_ea94_abd8_5384_e7be1344cace 83ee5c58_5d39_6a9f_3b4b_81ba336603a7["withGroup()"] a4438679_6d8d_9137_cff6_e0873f00d5a0 -->|calls| 83ee5c58_5d39_6a9f_3b4b_81ba336603a7 a7060ba0_7028_1911_946e_7c3090117119["fromSource()"] a4438679_6d8d_9137_cff6_e0873f00d5a0 -->|calls| a7060ba0_7028_1911_946e_7c3090117119 a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc["withProperty()"] a4438679_6d8d_9137_cff6_e0873f00d5a0 -->|calls| a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc 4524fd47_2a72_6baf_3673_e349f9d0b371["withNoDeprecation()"] a4438679_6d8d_9137_cff6_e0873f00d5a0 -->|calls| 4524fd47_2a72_6baf_3673_e349f9d0b371 3a84f306_c04e_ed63_ecc7_7013edbb2681["withDefaultValue()"] a4438679_6d8d_9137_cff6_e0873f00d5a0 -->|calls| 3a84f306_c04e_ed63_ecc7_7013edbb2681 style a4438679_6d8d_9137_cff6_e0873f00d5a0 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/ConfigurationMetadataAnnotationProcessorTests.java lines 274–285
@Test
void deprecatedOnUnrelatedSetter() {
Class<?> type = DeprecatedUnrelatedMethodPojo.class;
ConfigurationMetadata metadata = compile(type);
assertThat(metadata).has(Metadata.withGroup("not.deprecated").fromSource(type));
assertThat(metadata)
.has(Metadata.withProperty("not.deprecated.counter", Integer.class).withNoDeprecation().fromSource(type));
assertThat(metadata).has(Metadata.withProperty("not.deprecated.flag", Boolean.class)
.withDefaultValue(false)
.withNoDeprecation()
.fromSource(type));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does deprecatedOnUnrelatedSetter() do?
deprecatedOnUnrelatedSetter() is a function in the spring-boot codebase.
What does deprecatedOnUnrelatedSetter() call?
deprecatedOnUnrelatedSetter() calls 6 function(s): compile, fromSource, withDefaultValue, withGroup, withNoDeprecation, withProperty.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free