view m-toolbox/classes/@ltpda_uoh/fromRepository.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

% Retrieve a ltpda_uo from a repository
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% FUNCTION:    fromRepository
%
% DESCRIPTION: Retrieve a ltpda_uo from a repository
%
% CALL:        obj = fromRepository(pl)
%
% PARAMETER:   pl: Parameter list object
%
% VERSION:     $Id: fromRepository.m,v 1.20 2011/08/15 12:59:04 hewitson Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function objs = fromRepository(obj, pli)

  VERSION = 'ltpda_uoh: $Id: fromRepository.m,v 1.20 2011/08/15 12:59:04 hewitson Exp $';

  % get object info
  ii = obj.getInfo(class(obj), 'From Repository');
  % Set the method version string in the minfo object
  ii.setMversion([VERSION '-->' ii.mversion]);

  [objs, plh, ii] = fromRepository@ltpda_uo(obj, pli, ii);

  for ll = 1:numel(objs)
    %---- Add history
    objs(ll).addHistoryWoChangingUUID(ii, plh(ll), [], objs(ll).hist);

    % Set properties from the plist
    objs.setObjectProperties(plh(ll));
  end

    
end