File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,21 +7,21 @@ class ContextMapperDslValidationRegistry {
77}
88
99class ContextMapperDslValidator {
10- + checkContextMappingModel(ContextMappingModel, ValidationAcceptor)
11- + checkValue(Value, ValidationAcceptor)
10+ + validate(AstNode, ValidationAcceptor)
1211}
1312
1413class ContextMapperValidationProviderRegistry {
14+ - _providers: Map<string, ContextMapperValidationProvider<AstNode>>
1515+ get(AstNode): ContextMapperValidationProvider<AstNode>
1616}
1717
1818interface ContextMapperValidationProvider {
19- + supports (AstNode ): boolean
2019+ validate (T , ValidationAcceptor )
2120}
2221
2322ValidationRegistry <|-- ContextMapperDslValidationRegistry
2423ContextMapperDslValidationRegistry --> ContextMapperDslValidator
24+ ContextMapperDslValidationRegistry --> ContextMapperValidationProviderRegistry
2525ContextMapperDslValidator --> ContextMapperValidationProviderRegistry
2626ContextMapperValidationProviderRegistry o-- "0..* " ContextMapperValidationProvider
2727@enduml
You can’t perform that action at this time.
0 commit comments