SampleTypePropertyEditor Class — spring-boot Architecture
Architecture documentation for the SampleTypePropertyEditor class in BindConverterTests.java from the spring-boot codebase.
Entity Profile
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/BindConverterTests.java lines 250–262
static class SampleTypePropertyEditor extends PropertyEditorSupport {
@Override
public void setAsText(String text) {
setValue(null);
if (text != null) {
SampleType value = new SampleType();
value.text = text;
setValue(value);
}
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free