ChildProperties Class — spring-boot Architecture
Architecture documentation for the ChildProperties class in ChildProperties.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/inheritance/ChildProperties.java lines 19–61
public class ChildProperties extends BaseProperties {
private long longValue;
private final NestInChild childNest = new NestInChild();
public long getLongValue() {
return this.longValue;
}
public void setLongValue(long longValue) {
this.longValue = longValue;
}
public NestInChild getChildNest() {
return this.childNest;
}
public static class NestInChild {
private boolean boolValue;
private int intValue;
public boolean isBoolValue() {
return this.boolValue;
}
public void setBoolValue(boolean boolValue) {
this.boolValue = boolValue;
}
public int getIntValue() {
return this.intValue;
}
public void setIntValue(int intValue) {
this.intValue = intValue;
}
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free