Home / Class/ HierarchicalPropertiesParent Class — spring-boot Architecture

HierarchicalPropertiesParent Class — spring-boot Architecture

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

public abstract class HierarchicalPropertiesParent extends HierarchicalPropertiesGrandparent {

	/**
	 * Parent property.
	 */
	private String second = "two";

	public String getSecond() {
		return this.second;
	}

	public void setSecond(String second) {
		this.second = second;
	}

	// Overridden properties should belong to this class, not
	// HierarchicalPropertiesGrandparent

	@Override
	public String getFirst() {
		return super.getFirst();
	}

	@Override
	public void setFirst(String first) {
		super.setFirst(first);
	}

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free