view m-toolbox/classes/@plist/getPropertyForKey.m @ 18:947e2ff4b1b9 database-connection-manager

Update plist.FROM_REPOSITORY_PLIST and plist.TO_REPOSITORY_PLIST
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 from a specified parameter.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: GETPROPERTY get a property from a specified parameter. If
%              the property name exists then it returns the value otherwise
%              an empty array ([]).
%
% CALL:        obj = obj.getProperty(key, propertyName);
%
% INPUTS:      key:          Key for the parameter
%              propertyName: Property name of the value
%
% VERSION:     $Id: getPropertyForKey.m,v 1.1 2009/07/14 16:13:20 ingo Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

function val = getPropertyForKey(obj, key, propertyName)

  if nargin ~= 3
    error('### This method works only with three inputs.');
  end
  
  val = [];
  for ii = 1:numel(obj.params)
    if strcmpi(obj.params(ii).key, key)
      val = obj.params(ii).getProperty(propertyName);
      break;
    end
  end
  
end