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

recordComponentNameAnnotationProperties() — spring-boot Function Reference

Architecture documentation for the recordComponentNameAnnotationProperties() function in NameAnnotationPropertiesTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  05aa5e29_e711_72de_334d_ab304a0bacda["recordComponentNameAnnotationProperties()"]
  a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc["withProperty()"]
  05aa5e29_e711_72de_334d_ab304a0bacda -->|calls| a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc
  a7060ba0_7028_1911_946e_7c3090117119["fromSource()"]
  05aa5e29_e711_72de_334d_ab304a0bacda -->|calls| a7060ba0_7028_1911_946e_7c3090117119
  facc73e3_5f28_4513_9b1f_79367931e644["withDescription()"]
  05aa5e29_e711_72de_334d_ab304a0bacda -->|calls| facc73e3_5f28_4513_9b1f_79367931e644
  3a84f306_c04e_ed63_ecc7_7013edbb2681["withDefaultValue()"]
  05aa5e29_e711_72de_334d_ab304a0bacda -->|calls| 3a84f306_c04e_ed63_ecc7_7013edbb2681
  style 05aa5e29_e711_72de_334d_ab304a0bacda fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/NameAnnotationPropertiesTests.java lines 51–62

	@Test
	void recordComponentNameAnnotationProperties() {
		ConfigurationMetadata metadata = compile(RecordComponentNameAnnotationProperties.class);
		assertThat(metadata)
			.has(Metadata.withProperty("named.import", String.class)
				.fromSource(RecordComponentNameAnnotationProperties.class)
				.withDescription("Imports to apply."))
			.has(Metadata.withProperty("named.default", Boolean.class)
				.fromSource(RecordComponentNameAnnotationProperties.class)
				.withDefaultValue("Whether default mode is enabled.")
				.withDefaultValue(true));
	}

Domain

Subdomains

Frequently Asked Questions

What does recordComponentNameAnnotationProperties() do?
recordComponentNameAnnotationProperties() is a function in the spring-boot codebase.
What does recordComponentNameAnnotationProperties() call?
recordComponentNameAnnotationProperties() calls 4 function(s): fromSource, withDefaultValue, withDescription, withProperty.

Analyze Your Own Codebase

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

Try Supermodel Free