-
I have a validation that I want to run only if the program passes all other validations. How can I accomplish this? One possibility would be to wrap Another possibility would be to register the post-validation with a user category (#1837), or maybe "slow" category. Then, do I really like the latter approach, but it's unclear to me how to listen for only the "fast" validations. The non-fast validation shouldn't trigger |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Ah, I guess I can inherit from |
Beta Was this translation helpful? Give feedback.
Ah, I guess I can inherit from
DefaultDocumentValidator
and overridevalidateAst
?