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

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

%% Public properties

%% Visibility
p = schema.prop(c,'Visible','on/off');
p.FactoryValue = 'on';

%% Handles
schema.prop(c,'Handles','MATLAB array');

%% Handles
schema.prop(c,'Figure','MATLAB array');

%% Listeners
schema.prop(c,'Listeners','MATLAB array');

%% Time series parent node
schema.prop(c,'Srcnode','MATLAB array');





