Mercurial > hg > ltpda
view m-toolbox/classes/@paramValue/getProperty.m @ 24:056f8e1e995e database-connection-manager
Properly record history in fromRepository constructors
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
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