ExampleDest Class — spring-boot Architecture
Architecture documentation for the ExampleDest class in PropertyMapperTests.java from the spring-boot codebase.
Entity Profile
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/properties/PropertyMapperTests.java lines 348–363
static class ExampleDest {
private @Nullable String name;
boolean setNameCalled;
void setName(@Nullable String name) {
this.name = name;
this.setNameCalled = true;
}
@Nullable String getName() {
return this.name;
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free