Mercurial > hg > ltpda
view m-toolbox/classes/@ltpda_uo/ltpda_uo.m @ 10:75007001cbfe database-connection-manager
Check for binary only objects
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% LTPDA_UO is the abstract ltpda base class for ltpda user object classes. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: LTPDA_UO is the ltpda base class for ltpda user object classes. % This class is an abstract class and it is not possible to create % an instance of this class. % ALL ltpda user object classes inherit this 'abstract' class. % % SUPER CLASSES: ltpda_obj % % SUB CLASSES: ltpda_uoh, plist % % LTPDA_UO PROPERTIES: % % Protected Properties (read only) % UUID - Universally Unique Identifier of 128-bit % description - description of the object % mdlfile - model xml file of the LTPDAworkbench % name - name of the object % % VERSION: $Id: ltpda_uo.m,v 1.60 2011/09/16 04:59:06 hewitson Exp $ % % SEE ALSO: ltpda_obj, ltpda_uoh, plist % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% classdef (Hidden = true) ltpda_uo < ltpda_obj %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Property definition % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %---------- Public (read/write) Properties ---------- properties end %---------- Protected read-only Properties ---------- properties (SetAccess = protected) name = ''; % name of the object description = ''; % description of the object mdlfile = ''; % model xml file of the LTPDAworkbench UUID = ''; % Universally Unique Identifier of 128-bit end %---------- Private Properties ---------- properties (GetAccess = protected, SetAccess = protected) end %---------- Abstract Properties ---------- properties (Abstract = true, SetAccess = protected) end %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Check property setting % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% methods function set.description(obj, val) if isempty(val) return; end if ~ischar(val) error('### The value for the property ''description'' should be a string.'); end obj.description = val; end function set.mdlfile(obj, val) if ~ischar(val) error('### The value for the property ''mdlfile'' must be a string'); end obj.mdlfile = val; end end %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Constructor % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% methods function obj = ltpda_uo(varargin) end end %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Methods (static) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% methods (Static) varargout = getBuiltInModels(varargin) varargout = retrieve(varargin) varargout = update_struct(varargin) function ii = getInfo(varargin) ii = utils.helper.generic_getInfo(varargin{:}, 'ltpda_uo'); end function out = VEROUT() out = '$Id: ltpda_uo.m,v 1.60 2011/09/16 04:59:06 hewitson Exp $'; end function out = SETS() out = {'Default', ... 'From MAT File', ... 'From XML File', ... 'From Repository', ... 'From Built-in Model'}; end function out = buildplist(out, set) switch lower(set) case 'default' case 'from repository' out = out.append(plist.FROM_REPOSITORY_PLIST); case 'from xml file' out = out.append(plist.FROM_XML_FILE); case 'from mat file' out = out.append(plist.FROM_MAT_FILE); case 'from built-in model' out = out.append(plist.FROM_BUILT_IN); end end end %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Methods (static, private) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% methods (Static, Access = private) sinfo = submitDialog(sinfo, pl) pl = convertSinfo2Plist(pl, sinfo) end %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Methods (static, protected) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% methods (Static, Access = protected) end %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Methods (abstract) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% methods (Abstract) varargout = string(varargin) end %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Methods (public) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% methods varargout = save(varargin) varargout = bsubmit(varargin); varargout = submit(varargin); varargout = update(varargin); end %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Methods (public, hidden) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% methods (Hidden = true) varargout = setUUID(varargin) end %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Methods (protected) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% methods (Access = protected) varargout = setPropertyValue(varargin) varargout = fromRepository(varargin) varargout = fromModel(varargin) varargout = fromStruct(varargin) varargout = fromDom(varargin) varargout = processSetterValues(varargin) end %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Methods (private) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% methods (Access = protected) end %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Methods (static) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% methods (Static = true) varargout = load(varargin) end end