comparison m-toolbox/classes/@ltpda_nuo/ltpda_nuo.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1 % LTPDA_NUO is the abstract ltpda base class for ltpda non user object classes.
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %
4 % DESCRIPTION: LTPDA_NUO is the ltpda base class for ltpda non user
5 % object classes. This class is an abstract class and it is
6 % not possible to create an instance of this class.
7 % ALL ltpda non user object classes inherit this 'abstract' class.
8 %
9 % SUPER CLASSES: ltpda_obj
10 %
11 % SUB CLASSES: specwin, time, pz, minfo, history, provenance, param, unit, ltpda_data
12 %
13 % VERSION: $Id: ltpda_nuo.m,v 1.23 2011/02/18 16:48:53 ingo Exp $
14 %
15 % SEE ALSO: specwin, time, pz, minfo, history, provenance, param, unit, ltpda_data
16 %
17 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
18
19 classdef (Hidden = true) ltpda_nuo < ltpda_obj
20
21
22 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
23 % Property definition %
24 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
25
26 %---------- Public (read/write) Properties ----------
27 properties
28 end
29
30 %---------- Protected read-only Properties ----------
31 properties (SetAccess = protected)
32 end
33
34 %---------- Private Properties ----------
35 properties (GetAccess = protected, SetAccess = protected)
36 end
37
38 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
39 % Check property setting %
40 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
41
42 methods
43 end
44
45 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
46 % Constructor %
47 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
48
49 methods
50 function obj = ltpda_nuo(varargin)
51 end
52 end
53
54 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
55 % Methods (public) %
56 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
57
58 methods
59 end
60
61 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
62 % Methods (protected) %
63 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
64
65 methods (Access = protected)
66 varargout = fromStruct(varargin)
67 varargout = fromDom(varargin)
68 end
69
70 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
71 % Methods (static) %
72 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
73
74 methods (Static)
75
76 function ii = getInfo(varargin)
77 ii = utils.helper.generic_getInfo(varargin{:}, 'ltpda_nuo');
78 end
79
80 function out = VEROUT()
81 out = '$Id: ltpda_nuo.m,v 1.23 2011/02/18 16:48:53 ingo Exp $';
82 end
83
84 function out = SETS()
85 out = {};
86 end
87
88 function out = getDefaultPlist()
89 out = [];
90 end
91
92 end
93
94 end
95