Mercurial > hg > ltpda
view m-toolbox/classes/@ltpda_uo/setUUID.m @ 8:2f5c9bd7d95d database-connection-manager
Clarify ltpda_uo.retrieve parameters handling
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% SETUUID Set the property 'UUID' %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: SETUUID Set the property 'UUID' % % CALL: objs.setUUID('new UUID'); % objs = setUUID(objs, 'new UUID'); % % INPUTS: objs - is a general object % % REMARK: This method doesn't add history because it is only for % internal usage. e.g. in addHistoryStep. % % VERSION: $Id: setUUID.m,v 1.4 2011/03/25 13:24:46 ingo Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function objs = setUUID(objs, val) if nargin<2 val = {char(java.util.UUID.randomUUID)}; else val = cellstr(val); end % Replicate the values in 'val' to the number of AOs if numel(val) <= 1 && numel(objs) ~= 1 val = cell(size(objs)); val = cellfun(@(x) char(java.util.UUID.randomUUID), val, 'UniformOutput', false); end %%% decide whether we modify the ltpda_uo-object, or create a new one. objs = copy(objs, nargout); %%% set 'UUID' for ii=1:numel(objs) objs(ii).UUID = val{ii}; end end