www.gusucode.com > slcidemos工具箱matlab源码程序 > slcidemos/+slstart/+internal/SimulinkCodeInspectorFeaturedExampleProvider.m

    classdef SimulinkCodeInspectorFeaturedExampleProvider < slstart.internal.FeaturedExampleProvider
    % Stub implementation of slstart.internal.FeaturedExampleProvider for
    % a product with no feature examples.

    % Copyright 2015 The MathWorks, Inc.

    properties (GetAccess = public, SetAccess = private)
        % The customer visible product name this example ships with
        Product = 'Simulink Code Inspector';

        % The short name for this product as used by the Help Browser.
        ProductShortName = 'slci';

        % Thie product currently has no featured examples.
        FeaturedExamples = {};

        % No message catalog required, since there are no featured examples .
        MessageCatalogRoot = '';
    end
end