view m-toolbox/classes/@plist/getPropertyForKey.m @ 52:daf4eab1a51e database-connection-manager tip

Fix. Default password should be [] not an empty string
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:29:47 +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