view m-toolbox/classes/@param/setKey.m @ 27:29276498ebdb
database-connection-manager
Remove LTPDARepositoryManager implementation
* * *
Remove GUI helper
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
line source
% SETKEY Set the property 'key'.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: Set the property 'key'.
%
% CALL: obj.setKey('new key');
% obj = setKey(obj, 'new key');
%
% VERSION: $Id: setKey.m,v 1.8 2011/02/18 16:48:53 ingo Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function varargout = setKey(varargin)
%%% decide whether we modify the first plist, or create a new one.
varargin{1} = copy(varargin{1}, nargout);
varargin{1}.key = varargin{2};
varargout{1} = varargin{1};
end