Class NullModelChecker
- java.lang.Object
-
- de.gebit.integrity.runner.modelcheck.NullModelChecker
-
- All Implemented Interfaces:
ModelChecker
public class NullModelChecker extends Object implements ModelChecker
ThisModelCheckerimplementation does not perform any checks. The normally used checker is replaced with this one if the checks shall be omitted (for example for performance reasons).- Author:
- Rene Schneider - initial API and implementation
-
-
Constructor Summary
Constructors Constructor Description NullModelChecker()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcheck(Call aCall)Validates a call.voidcheck(CustomOperation aCustomOperation)Validates a custom operation.voidcheck(Suite aSuite)Validates a suite call.voidcheck(TableTest aTableTest)Validates a tabletest.voidcheck(Test aTest)Validates a test.
-
-
-
Method Detail
-
check
public void check(Test aTest) throws ModelRuntimeLinkException
Description copied from interface:ModelCheckerValidates a test.- Specified by:
checkin interfaceModelChecker- Parameters:
aTest- the test to check- Throws:
ModelRuntimeLinkException
-
check
public void check(Call aCall) throws ModelRuntimeLinkException
Description copied from interface:ModelCheckerValidates a call.- Specified by:
checkin interfaceModelChecker- Parameters:
aCall- the call to check- Throws:
ModelRuntimeLinkException
-
check
public void check(TableTest aTableTest) throws ModelRuntimeLinkException
Description copied from interface:ModelCheckerValidates a tabletest.- Specified by:
checkin interfaceModelChecker- Parameters:
aTableTest- the tabletest to check- Throws:
ModelRuntimeLinkException
-
check
public void check(CustomOperation aCustomOperation) throws ModelRuntimeLinkException
Description copied from interface:ModelCheckerValidates a custom operation.- Specified by:
checkin interfaceModelChecker- Parameters:
aCustomOperation- the custom operation to check- Throws:
ModelRuntimeLinkException
-
check
public void check(Suite aSuite) throws ModelRuntimeLinkException
Description copied from interface:ModelCheckerValidates a suite call.- Specified by:
checkin interfaceModelChecker- Parameters:
aSuite- the suite call to check- Throws:
ModelRuntimeLinkException
-
-