Home / Class/ Inner Class — spring-boot Architecture

Inner Class — spring-boot Architecture

Architecture documentation for the Inner class in NestedPropertiesMethod.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/method/NestedPropertiesMethod.java lines 48–67

	public static class Inner {

		private String myInnerProperty;

		private final NestedProperty nested = new NestedProperty();

		public String getMyInnerProperty() {
			return this.myInnerProperty;
		}

		public void setMyInnerProperty(String myInnerProperty) {
			this.myInnerProperty = myInnerProperty;
		}

		@TestNestedConfigurationProperty
		public NestedProperty getNested() {
			return this.nested;
		}

	}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free