setCallBack
Short summary
This methods is the setter for the callback class if an assertion was false
Parameters
| Name | Type | Comment | Kind |
|---|---|---|---|
| callBack | IAssertCallBack | the class that must be informed if an assertion is false | input |
Code
Declaration
METHOD setCallBack
VAR_INPUT
(* the class that must be informed if an assertion is false *)
callBack :IAssertCallBack;
END_VAR
Implementation
SUPER^.setCallBack(callBack);
THIS^.assertion.setCallBack(callBack);