function schema
%SCHEMA  Class definition of @hsvchart (Hankel singular value bar chart).

%  Author(s): P. Gahinet
%  Copyright 1986-2004 The MathWorks, Inc.
%  $Revision: 1.1.6.1 $ $Date: 2004/12/26 21:52:52 $

% Register class 
superclass = findclass(findpackage('wrfc'), 'dataview');
c = schema.class(findpackage('resppack'), 'hsvchart', superclass);

% Public attributes
schema.prop(c, 'DataSrc',        'handle');        % Data source (@respsource)
schema.prop(c, 'Name',           'string');        % System name

% Private attributes
schema.prop(c, 'DataChangedListener', 'handle vector');
schema.prop(c, 'DataSrcListener', 'handle');

% Event
schema.event(c, 'DataChanged');
