Home / Class/ ClassWithNestedProperties Class — spring-boot Architecture

ClassWithNestedProperties Class — spring-boot Architecture

Architecture documentation for the ClassWithNestedProperties class in ClassWithNestedProperties.java from the spring-boot codebase.

Entity Profile

Relationship Graph

Source Code

configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationsample/simple/ClassWithNestedProperties.java lines 26–57

public class ClassWithNestedProperties {

	public static class NestedParentClass {

		private int parentClassProperty = 10;

		public int getParentClassProperty() {
			return this.parentClassProperty;
		}

		public void setParentClassProperty(int parentClassProperty) {
			this.parentClassProperty = parentClassProperty;
		}

	}

	@TestConfigurationProperties("nestedChildProps")
	public static class NestedChildClass extends NestedParentClass {

		private int childClassProperty = 20;

		public int getChildClassProperty() {
			return this.childClassProperty;
		}

		public void setChildClassProperty(int childClassProperty) {
			this.childClassProperty = childClassProperty;
		}

	}

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free