Home / Class/ InnerClassWithPrivateConstructor Class — spring-boot Architecture

InnerClassWithPrivateConstructor Class — spring-boot Architecture

Architecture documentation for the InnerClassWithPrivateConstructor class in InnerClassWithPrivateConstructor.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/InnerClassWithPrivateConstructor.java lines 26–56

@TestConfigurationProperties("config")
public class InnerClassWithPrivateConstructor {

	private Nested nested = new Nested("whatever");

	public Nested getNested() {
		return this.nested;
	}

	public void setNested(Nested nested) {
		this.nested = nested;
	}

	public static final class Nested {

		private String name;

		private Nested(String ignored) {
		}

		public String getName() {
			return this.name;
		}

		public void setName(String name) {
			this.name = name;
		}

	}

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free