www.gusucode.com > mbcguitools 工具箱 matlab 源码程序 > mbcguitools/+mbcgui/+widget/NullScrollTableElement.m

    classdef NullScrollTableElement < mbcgui.widget.AbstractComponent
    %NULLSCROLLTABLEELEMENT Default ScrollTableElement
    
    %   Copyright 2014-2015 The MathWorks, Inc.
    methods
        
        function obj = NullScrollTableElement(varargin)
        obj@mbcgui.widget.AbstractComponent(); % converted super class constructor call
        end
        
        function setTableData(obj, R, C, dm) %#ok<INUSD>
        end
        
        function setAllTableData(obj, row, col, data) %#ok<INUSD>
        end
        
        
        
    end
    
    
    methods (Access = protected)
        function ok = isvalidcomponent(obj) %#ok<MANU>
        %isvalidcomponent component exists
        %   called from Heterogeneous method
        %
        %   See also mbcgui.widget.AbstractComponent.iscomponent
        
        ok = false;
        end
    end
end