is it possible to split certain providers into multiple files?
Especially the validation and quickfix providers can become quite huge which
slows down working with them significantly. Thus I wondered if there are
strategies with which these can be divided into smaller amounts of code.
> Hi,
>
> for the validator:
>
> @ComposedChecks(validators={V1.class, V2.class})
> public class MyDslJavaValidator extends AbstractMyDslJavaValidator {
>
> }
>
> for the Quickfix: you could use the delegate pattern