cdc.applic.dictionaries.edit.checks.EnAssertionChecker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdc-applic-dictionaries-edit Show documentation
Show all versions of cdc-applic-dictionaries-edit Show documentation
Applicabilities Dictionaries Edition.
The newest version!
package cdc.applic.dictionaries.edit.checks;
import cdc.applic.dictionaries.edit.EnUserDefinedAssertion;
import cdc.applic.dictionaries.edit.checks.rules.EnAssertionExpressionMustBeSyntacticallyValid;
import cdc.issues.checks.CompositeChecker;
import cdc.issues.checks.SnapshotManager;
public class EnAssertionChecker extends CompositeChecker {
public EnAssertionChecker(SnapshotManager manager) {
super(manager,
EnUserDefinedAssertion.class,
new EnAssertionExpressionMustBeSyntacticallyValid(manager));
}
}