diff m-toolbox/classes/@ltpda_uo/setDescription.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/m-toolbox/classes/@ltpda_uo/setDescription.m	Wed Nov 23 19:22:13 2011 +0100
@@ -0,0 +1,88 @@
+% SETDESCRIPTION sets the 'description' property of a ltpda_uoh object.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%
+% DESCRIPTION: SETDESCRIPTION sets the 'description' property of a ltpda_uoh object.
+%
+% CALL:        objs.setDescription(val);
+%              objs.setDescription(val1, val2);
+%              objs.setDescription(plist('description', val));
+%              objs = objs.setDescription(val);
+%
+% INPUTS:      objs: Any shape of ltpda_uoh objects
+%              val:
+%                 1. Single string e.g. 'val'
+%                      Each object in objs get this value.
+%                 2. Single string in a cell-array e.g. {'val'}
+%                      Each objects in objs get this value.
+%                 3. cell-array with the same number of strings as in objs
+%                    e.g. {'val1', 'val2', 'val3'} and 3 objects in objs
+%                      Each object in objs get its corresponding value from the
+%                      cell-array
+%
+% <a href="matlab:utils.helper.displayMethodInfo('ltpda_uoh', 'setDescription')">Parameters Description</a>
+%
+% VERSION:     $Id: setDescription.m,v 1.10 2011/09/16 05:00:38 hewitson Exp $
+%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+function varargout = setDescription(varargin)
+  
+  % Check if this is a call from a class method
+  callerIsMethod = utils.helper.callerIsMethod;
+  
+  if callerIsMethod
+    in_names = {};
+  else    
+    % Collect input variable names
+    in_names = cell(size(varargin));
+    for ii = 1:nargin,in_names{ii} = inputname(ii);end
+  end
+  
+  objects = setPropertyValue(...
+    varargin{:}, ...
+    in_names, ...
+    callerIsMethod, ...
+    'description', ...
+    [], ...
+    nargout, ...
+    @getInfo);
+  
+  % set outputs
+  varargout = utils.helper.setoutputs(nargout, objects);
+  
+end
+
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%                               Local Functions                               %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%--------------------------------------------------------------------------
+% 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, mfilename('class'), 'ltpda', utils.const.categories.helper, '$Id: setDescription.m,v 1.10 2011/09/16 05:00:38 hewitson Exp $', sets, pl);
+end
+
+%--------------------------------------------------------------------------
+% Get Default Plist
+%--------------------------------------------------------------------------
+function plout = getDefaultPlist()
+  persistent pl;
+  if ~exist('pl', 'var') || isempty(pl)
+    pl = buildplist();
+  end
+  plout = pl;
+end
+
+function pl = buildplist()
+  pl = plist({'description', 'The description to set.'}, paramValue.EMPTY_STRING);
+end