DeprecatedLessPreciseTypePojo Class — spring-boot Architecture
Architecture documentation for the DeprecatedLessPreciseTypePojo class in DeprecatedLessPreciseTypePojo.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/DeprecatedLessPreciseTypePojo.java lines 27–50
@TestConfigurationProperties("not.deprecated")
public class DeprecatedLessPreciseTypePojo {
private boolean flag;
@Deprecated
public Boolean getFlag() {
return this.flag;
}
public boolean isFlag() {
return this.flag;
}
public void setFlag(boolean flag) {
this.flag = flag;
}
@Deprecated
public void setFlag(Boolean flag) {
this.flag = flag;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free