function L = getlinks(this)
%GETLINKS  Gathers data link variables.
%
%   L = GETLINKS(D) returns the list L of data link
%   variables in the root node D.

%   Copyright 1986-2003 The MathWorks, Inc.
%   $Revision: 1.1.6.1 $  $Date: 2004/12/26 21:31:25 $
L = get(this.Children_,{'Alias'});
L = cat(1,L{:});
