view m-toolbox/classes/@paramValue/setOptions.m @ 16:91f21a0aab35
database-connection-manager
Update utils.jquery
* * *
Update utils.jmysql.getsinfo
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % SETOPTIONS Sets the property 'options'.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: Set the property 'options'.
+ − %
+ − % CALL: obj = obj.setOptions(options);
+ − % obj = setOptions(obj, options);
+ − %
+ − % INPUTS: obj - single paramValue object
+ − % options - new options
+ − %
+ − % REMARK: This method checks if the options have at lease as much
+ − % elements as the 'valIndex'.
+ − % If 'valIndex' is equal to -1 then is it possible to set each
+ − % cell to options.
+ − %
+ − % VERSION: $Id: setOptions.m,v 1.1 2009/06/17 15:01:53 ingo Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function varargout = setOptions(varargin)
+ −
+ − %%% Check number in inputs
+ − if nargin ~= 2
+ − error('### This method accepts only two inputs. The first one must be the object and the second one an integer.');
+ − end
+ −
+ − obj = varargin{1};
+ − options = varargin{2};
+ −
+ − %%% Check the correctness of the inputs
+ − if ~isa(obj, 'paramValue') || numel(obj) ~= 1
+ − error('### The first input must be a single paramValue object.');
+ − end
+ − if ~iscell(options)
+ − error('### Please specify a cell for the options.');
+ − end
+ −
+ − %%% Check if the 'options' have enough elements
+ − if (obj.valIndex > 1) && (obj.valIndex > numel(options))
+ − error('### The ''options'' must have at lease as much elements [%d] as the ''valIndex'' [%d]', numel(options), obj.valIndex);
+ − end
+ −
+ − obj = copy(obj, nargout);
+ −
+ − obj.options = options;
+ −
+ − %%% Prepare output
+ − varargout{1} = obj;
+ −
+ − end