function schema
% Defines properties for @variable class (data set variable).

%   Copyright 1986-2003 The MathWorks, Inc.
%   $Revision: 1.1.6.1 $ $Date: 2004/12/26 21:32:59 $

% Register class 
c = schema.class(findpackage('hds'),'variable');

% Public properties
p = schema.prop(c,'Name','string'); % Variable name
p.AccessFlags.PublicSet = 'off';

