LTPDA_NUO is the abstract ltpda base class for ltpda non user object classes. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: LTPDA_NUO is the ltpda base class for ltpda non user object classes. This class is an abstract class and it is not possible to create an instance of this class. ALL ltpda non user object classes inherit this 'abstract' class. SUPER CLASSES: ltpda_obj SUB CLASSES: specwin, time, provenance, pz, param, history, minfo, ltpda_data PROPERTIES: Inherit Properties (read only) version - cvs-version string. LTPDA_UO Methods: Public Methods Protected Methjods M-FILE INFO: The following call returns an minfo object that contains information about the ltpda_nuo constructor: >> info = ltpda_nuo.getInfo or >> info = ltpda_nuo.getInfo('ltpda_nuo') VERSION: $Id: ltpda_nuo.m,v 1.16 2008/09/03 16:32:47 hewitson Exp $ HISTORY: 19-05-2008 Diepholz Creation. SEE ALSO: ltpda_obj, specwin, time, provenance, pz, param, history, minfo, ltpda_data %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 % LTPDA_NUO is the abstract ltpda base class for ltpda non user object classes. 0002 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0003 % 0004 % DESCRIPTION: LTPDA_NUO is the ltpda base class for ltpda non user object classes. 0005 % This class is an abstract class and it is not possible to create 0006 % an instance of this class. 0007 % ALL ltpda non user object classes inherit this 'abstract' class. 0008 % 0009 % SUPER CLASSES: ltpda_obj 0010 % 0011 % SUB CLASSES: specwin, time, provenance, pz, param, history, minfo, ltpda_data 0012 % 0013 % PROPERTIES: 0014 % 0015 % Inherit Properties (read only) 0016 % version - cvs-version string. 0017 % 0018 % LTPDA_UO Methods: 0019 % 0020 % Public Methods 0021 % Protected Methjods 0022 % 0023 % M-FILE INFO: The following call returns an minfo object that contains 0024 % information about the ltpda_nuo constructor: 0025 % >> info = ltpda_nuo.getInfo 0026 % or >> info = ltpda_nuo.getInfo('ltpda_nuo') 0027 % 0028 % VERSION: $Id: ltpda_nuo.m,v 1.16 2008/09/03 16:32:47 hewitson Exp $ 0029 % 0030 % HISTORY: 19-05-2008 Diepholz 0031 % Creation. 0032 % 0033 % SEE ALSO: ltpda_obj, specwin, time, provenance, pz, param, history, minfo, ltpda_data 0034 % 0035 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0036 0037 classdef ltpda_nuo < ltpda_obj 0038 0039 0040 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0041 % Property definition % 0042 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0043 0044 %---------- Public (read/write) Properties ---------- 0045 properties 0046 end 0047 0048 %---------- Protected read-only Properties ---------- 0049 properties (SetAccess = protected) 0050 end 0051 0052 %---------- Private Properties ---------- 0053 properties (GetAccess = protected, SetAccess = protected) 0054 end 0055 0056 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0057 % Check property setting % 0058 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0059 0060 methods 0061 end 0062 0063 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0064 % Constructor % 0065 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0066 0067 methods 0068 function obj = ltpda_nuo(varargin) 0069 0070 %%% Call superclass 0071 obj = obj@ltpda_obj(varargin{:}); 0072 0073 %%%%%%%%%% Set dafault values %%%%%%%%%% 0074 end 0075 end 0076 0077 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0078 % Methods (public) % 0079 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0080 0081 methods 0082 end 0083 0084 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0085 % Methods (static) % 0086 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0087 0088 methods (Static) 0089 0090 function ii = getInfo(varargin) 0091 ii = utils.helper.generic_getInfo(varargin{:}, 'ltpda_nuo'); 0092 end 0093 0094 function out = VEROUT() 0095 out = '$Id: ltpda_nuo.m,v 1.16 2008/09/03 16:32:47 hewitson Exp $'; 0096 end 0097 0098 function out = SETS() 0099 out = {}; 0100 end 0101 0102 function out = getDefaultPlist() 0103 out = []; 0104 end 0105 0106 end 0107 0108 end 0109