Mercurial > hg > ltpda
view m-toolbox/classes/@ssm/generateConstructorPlist.m @ 40:977eb37f31cb database-connection-manager
User friendlier errors from utils.mysql.connect
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 18:04:03 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% GENERATECONSTRUCTORPLIST generates a PLIST from the properties which can rebuild the object. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: GENERATECONSTRUCTORPLIST generates a PLIST from the % properties which can rebuild the object. % % CALL: pl = obj.generateConstructorPlist(); % % <a href="matlab:utils.helper.displayMethodInfo('ao', 'generateConstructorPlist')">Parameters Description</a> % % VERSION: $Id: generateConstructorPlist.m,v 1.3 2011/04/08 08:56:22 hewitson Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function pl = generateConstructorPlist(varargin) % Check if this is a call for parameters if utils.helper.isinfocall(varargin{:}) pl = getInfo(varargin{3}); return end obj = varargin{1}; pl = plist(); % Add procinfo appendProperty(pl, obj, 'procinfo'); % Add plotinfo appendProperty(pl, obj, 'plotinfo'); % Add name appendProperty(pl, obj, 'name', false); % Add description appendProperty(pl, obj, 'description'); % Add amats appendProperty(pl, obj, 'amats'); % Add bmats appendProperty(pl, obj, 'bmats'); % Add cmats appendProperty(pl, obj, 'cmats'); % Add dmats appendProperty(pl, obj, 'dmats'); % Add timestep appendProperty(pl, obj, 'timestep'); % Add params appendProperty(pl, obj, 'params'); % Add statenames appendProperty(pl, obj, 'statenames'); % Add inputnames appendProperty(pl, obj, 'inputnames'); % Add outputnames appendProperty(pl, obj, 'outputnames'); end %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Local Functions % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % FUNCTION: appendProperty % % CALL: appendProperty(pl, obj, propName) % appendProperty(pl, obj, propName, isemptyCheck) % % DESCRIPTION: Get Info Object % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function appendProperty(pl, obj, propName, isemptyCheck) if nargin <= 3 isemptyCheck = true; end if isemptyCheck if ~isempty(obj.(propName)) pl.append(propName, obj.(propName)); else % Don't append the property to the PLIST end else pl.append(propName, obj.(propName)); end end %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % FUNCTION: getInfo % % DESCRIPTION: Get Info Object % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function ii = getInfo(varargin) if nargin == 1 && strcmpi(varargin{1}, 'None') sets = {}; pl = []; else sets = {'Default'}; pl = getDefaultPlist; end % Build info object ii = minfo(mfilename, 'ao', 'ltpda', utils.const.categories.internal, '$Id: generateConstructorPlist.m,v 1.3 2011/04/08 08:56:22 hewitson Exp $', sets, pl); end %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % FUNCTION: getDefaultPlist % % DESCRIPTION: Get Default Plist % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function plo = getDefaultPlist() plo = plist(); end