view m-toolbox/classes/+utils/@models/getInfo.m @ 21:8be9deffe989
database-connection-manager
Update ltpda_uo.update
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
line source
% GETINFO Get Info Object
%
% CALL: utils.models.getInfo(modelname, @getModelDescription, @versionTable, version, @getFileVersion)
%
%
function ii = getInfo(varargin)
modelname = varargin{1};
getVersion = varargin{5};
pls = utils.models.getDefaultPlist(varargin{2:end});
% Build info object
parts = regexp(modelname, '_', 'split');
ii = minfo(modelname, parts{1}, 'ltpda', utils.const.categories.constructor, getVersion(), {}, pls);
ii.setDescription(utils.models.getDescription(varargin{2:end}));
fcn = utils.models.functionForVersion(varargin{2:end});
ii.addChildren(fcn('info'));
end