function schema
% Defines properties for @mergedlg class.
%
%   Author(s): James G. Owen
%   Copyright 1986-2002 The MathWorks, Inc. 
%   $Revision: 1.1.6.1 $ $Date: 2004/12/26 21:40:40 $

%% Register class 
p = findpackage('tsguis');
c = schema.class(p,'statsdlg');

%% Public proeprties
schema.prop(c, 'Timeseries', 'MATLAB array');
schema.prop(c, 'Srcnode', 'MATLAB array');
schema.prop(c, 'Listeners', 'MATLAB array');
schema.prop(c, 'Figure', 'MATLAB array');
schema.prop(c, 'Handles', 'MATLAB array');
schema.prop(c, 'Visible', 'on/off');
schema.prop(c, 'tslisteners', 'MATLAB array');

