Home / Class/ TripleNested Class — spring-boot Architecture

TripleNested Class — spring-boot Architecture

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

Entity Profile

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/BindableRuntimeHintsRegistrarTests.java lines 685–717

	public static class TripleNested {

		private final DoubleNested doubleNested = new DoubleNested();

		public DoubleNested getDoubleNested() {
			return this.doubleNested;
		}

		public static class DoubleNested {

			private final Nested nested = new Nested();

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

			public static class Nested {

				private @Nullable String field;

				public @Nullable String getField() {
					return this.field;
				}

				public void setField(@Nullable String field) {
					this.field = field;
				}

			}

		}

	}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free