public abstract class ValidatorProvider extends Object implements EditorProvider
| Constructor and Description |
|---|
ValidatorProvider() |
| Modifier and Type | Method and Description |
|---|---|
Editor |
getRootEditor(NodeState before,
NodeState after,
NodeBuilder builder,
CommitInfo info)
Returns an editor for processing changes between the given two states.
|
protected abstract Validator |
getRootValidator(NodeState before,
NodeState after,
CommitInfo info)
Returns a validator for checking the changes between the given
two root states.
|
@CheckForNull protected abstract Validator getRootValidator(NodeState before, NodeState after, CommitInfo info)
before - original root stateafter - modified root stateinfo - metadata about this commitnull if this validator is not needed for this commit@CheckForNull public final Editor getRootEditor(NodeState before, NodeState after, NodeBuilder builder, CommitInfo info)
EditorProvidernull if the changes don't require processing.
An implementation of this method should generally not compare the
given before and after states, as the caller is expected to compare
the states and invoke the respective callback methods on the
Editor instance returned by this method. Instead the
implementation can use the opportunity for other preparatory work.
getRootEditor in interface EditorProviderbefore - original root stateafter - modified root statebuilder - node builder based on the after stateinfo - metadata associated with this commitnullCopyright © 2012–2018 The Apache Software Foundation. All rights reserved.