setCallbackFcn
Specify callback function for check
Syntax
setCallbackFcn(check_obj, @handle,
context
, style
)
Description
setCallbackFcn(check_obj, @handle,
specifies the callback function to use with the check, context
, style
)check_obj
.
For the style input argument, to use the default format of the Model Advisor report,
specify DetailStyle
. With the default format, you do not have to use
the ModelAdvisor.FormatTemplate
class or the other Model Advisor Formatting
APIs to format the results that appear in the Model Advisor.
DetailStyle
also allows you to view results by block, subsystem,
or recommended action. If the default formatting does not meet your needs, use the
ModelAdvisor.FormatTemplate
API or the other formatting
APIs.
Input Arguments
check_obj | Instantiation of the |
handle | Handle to a check callback function |
context | Context for checking the model or subsystem:
|
style | Type of callback function:
|
Examples
This example illustrates the definition for a check using a callback function whose
style is defined as DetailStyle
.
% This is the recommended style to author checks. function defineModelAdvisorChecks mdladvRoot = ModelAdvisor.Root; rec = ModelAdvisor.Check('com.mathworks.sample.Check0'); rec.Title = 'Check whether block names appear below blocks (recommended check style)'; rec.TitleTips = 'Example new style callback (recommended check style)'; rec.setCallbackFcn(@SampleNewCheckStyleCallback,'None','DetailStyle'); % set fix operation myAction0 = ModelAdvisor.Action; myAction0.setCallbackFcn(@sampleActionCB0); myAction0.Name='Make block names appear below blocks'; myAction0.Description='Click the button to place block names below blocks'; rec.setAction(myAction0); mdladvRoot.publish(rec, 'Demo'); % publish check into Demo group.