view m-toolbox/classes/@param/setDesc.m @ 43:bc767aaa99a8

CVS Update
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Tue, 06 Dec 2011 11:09:25 +0100
parents f0afece42f48
children
line wrap: on
line source

% SETDESC Set the property 'desc'.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: Set the property 'desc'.
%
% CALL:        obj.setDesc('new description');
%              obj = setDesc(obj, 'new description');
%
% VERSION:     $Id: setDesc.m,v 1.4 2011/02/18 16:48:53 ingo Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

function varargout = setDesc(varargin)

  %%% decide whether we modify the first plist, or create a new one.
  varargin{1} = copy(varargin{1}, nargout);
  
  varargin{1}.desc = varargin{2};
  varargout{1} = varargin{1};
  
end