ExampleCollectionBean Class — spring-boot Architecture
Architecture documentation for the ExampleCollectionBean class in CollectionBinderTests.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/CollectionBinderTests.java lines 512–544
static class ExampleCollectionBean {
private final List<String> items = new ArrayList<>();
private Set<String> itemsSet = new LinkedHashSet<>();
private @Nullable String string;
List<String> getItems() {
return this.items;
}
void setItems(List<String> items) {
this.items.add("d");
}
Set<String> getItemsSet() {
return this.itemsSet;
}
void setItemsSet(Set<String> itemsSet) {
this.itemsSet = itemsSet;
}
@Nullable String getString() {
return this.string;
}
void setString(@Nullable String string) {
this.string = string;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free