GET get parameter list properties. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: GET get parameter properties. CALL: name = get(pl, 'name'); params = get(pl, 'params'); version = get(pl, 'version'); created = get(pl, 'created'); VERSION: $Id: get.html,v 1.14 2008/03/31 10:27:42 hewitson Exp $ HISTORY: 30-01-07 M Hewitson Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 function val = get(pl, propName) 0002 % GET get parameter list properties. 0003 % 0004 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0005 % 0006 % DESCRIPTION: GET get parameter properties. 0007 % 0008 % CALL: name = get(pl, 'name'); 0009 % params = get(pl, 'params'); 0010 % version = get(pl, 'version'); 0011 % created = get(pl, 'created'); 0012 % 0013 % VERSION: $Id: get.html,v 1.14 2008/03/31 10:27:42 hewitson Exp $ 0014 % 0015 % HISTORY: 30-01-07 M Hewitson 0016 % Creation 0017 % 0018 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0019 0020 VERSION = '$Id: get.html,v 1.14 2008/03/31 10:27:42 hewitson Exp $'; 0021 CATEGORY = 'Helper'; 0022 DEFAULT_PLIST = plist('property', ''); 0023 0024 val = generic_get(pl, propName, DEFAULT_PLIST, VERSION, CATEGORY);