Home / Class/ ConstructorUsedDirectly Class — spring-boot Architecture

ConstructorUsedDirectly Class — spring-boot Architecture

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

Entity Profile

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesTests.java lines 3180–3207

	static class ConstructorUsedDirectly {

		private String one;

		private String two;

		ConstructorUsedDirectly(String one, String two) {
			this.one = one;
			this.two = two;
		}

		String getOne() {
			return this.one;
		}

		void setOne(String one) {
			this.one = one;
		}

		String getTwo() {
			return this.two;
		}

		void setTwo(String two) {
			this.two = two;
		}

	}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free