https://github.com/apache/wicket/blob/wicket-9.x/wicket-core/src/test/java/org/apache/wicket/model/IModelTest.java#L240
LGTM On Wed, Nov 1, 2023 at 7:52 PM Ernesto Reinaldo Barreiro <reier...@gmail.com> wrote: > sealed interface TextMatchingStatus > { > record NotSubmitted() implements TextMatchingStatus {} > record Queued() implements TextMatchingStatus {} > record Analysed(int matchingInPercent) implements TextMatchingStatus {} > record Error(int errorCode, String humanReadableMessage) implements > TextMatchingStatus > {} > } > > ? > -- > Regards - Ernesto Reinaldo Barreiro >