DescriptionProperties Class — spring-boot Architecture
Architecture documentation for the DescriptionProperties class in DescriptionProperties.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/DescriptionProperties.java lines 26–72
@TestConfigurationProperties("description")
public class DescriptionProperties {
/**
* A simple description.
*/
private String simple;
/**
* This is a lengthy description that spans across multiple lines to showcase that the
* line separators are cleaned automatically.
*/
private String multiLine;
// @formatter:off
/**
* This is an example of a description
*with unusual whitespace after a new line.
*/
private String multiLineWhitespace;
// @formatter:on
public String getSimple() {
return this.simple;
}
public void setSimple(String simple) {
this.simple = simple;
}
public String getMultiLine() {
return this.multiLine;
}
public void setMultiLine(String multiLine) {
this.multiLine = multiLine;
}
public String getMultiLineWhitespace() {
return this.multiLineWhitespace;
}
public void setMultiLineWhitespace(String multiLineWhitespace) {
this.multiLineWhitespace = multiLineWhitespace;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free