Mercurial > hg > ltpda
view m-toolbox/classes/@param/setVal.m @ 52:daf4eab1a51e database-connection-manager tip
Fix. Default password should be [] not an empty string
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:29:47 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% SETVAL Set the property 'val'. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: Set the property 'val'. % % CALL: obj = obj.setVal('new val'); % obj.setVal('new val'); % % VERSION: $Id: setVal.m,v 1.8 2011/02/18 16:48:53 ingo Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function varargout = setVal(varargin) %%% decide whether we modify the first plist, or create a new one. varargin{1} = copy(varargin{1}, nargout); varargin{1}.val = varargin{2}; varargout{1} = varargin{1}; end