view m-toolbox/classes/@paramValue/getProperty.m @ 1:2014ba5b353a
database-connection-manager
Remove old code
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Sat, 03 Dec 2011 18:13:55 +0100 (2011-12-03)
parents
f0afece42f48
children
line source
+ − % GETPROPERTY get a property to a paramValue
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: GETPROPERTY get a property to a paramValue. If the property
+ − % name exists then it returns the value otherwise an empty
+ − % array ([]).
+ − %
+ − % CALL: obj = obj.getProperty(propertyName);
+ − %
+ − % INPUTS: propertyName: Property name of the paramValue object
+ − %
+ − % VERSION: $Id: getProperty.m,v 1.1 2009/07/14 16:13:19 ingo Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function val = getProperty(obj, propertyName)
+ −
+ − if nargin ~= 2
+ − error('### This method works only with two inputs.');
+ − end
+ −
+ − if isfield(obj.property, propertyName)
+ − val = obj.property.(propertyName);
+ − else
+ − val = [];
+ − end
+ −
+ − end