view m-toolbox/classes/@param/getProperty.m @ 17:7afc99ec5f04 database-connection-manager

Update ao_model_retrieve_in_timespan
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 parameter.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: GETPROPERTY get a property from a parameter. 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.2 2011/02/22 15:42:25 hewitson Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

function val = getProperty(obj, propertyName)

  if nargin ~= 2
    error('### This method works only with two inputs.');
  end
  
  if ~isa(obj.val, 'paramValue')
    val = [];
    return
  end
  
  if ~isempty(obj.val)
    if isfield(obj.val.property, propertyName)
      val = obj.val.property.(propertyName);
    else
      val = [];
    end
  else
    val = [];
  end
  
end