Home / Class/ TwoConstructorsExample Class — spring-boot Architecture

TwoConstructorsExample Class — spring-boot Architecture

Architecture documentation for the TwoConstructorsExample class in TwoConstructorsExample.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/specific/TwoConstructorsExample.java lines 24–43

public class TwoConstructorsExample {

	private String name;

	public TwoConstructorsExample() {
	}

	public TwoConstructorsExample(String name) {
		this.name = name;
	}

	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