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


% Register class (subclass)
p = findpackage('tsguis');
pparent = findpackage('wrfc');
c = schema.class(p, 'xydata',findclass(pparent,'data'));

% Public properties
schema.prop(c, 'XData', 'MATLAB array');
schema.prop(c, 'YData', 'MATLAB array');






