GET get timeformat properties. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: GET get timeformat properties. CALL: value = get(tf, 'property'); EXAMPLES: format_str = get(tf, 'format_str'); format_nr = get(tf, 'format_nr'); default_matlab_str = get(tf, 'default_matlab_str'); default_matlab_nr = get(tf, 'default_matlab_nr'); default_java_str = get(tf, 'default_java_str'); VERSION: $Id: get.html,v 1.7 2008/03/31 10:27:44 hewitson Exp $ HISTORY: 11-02-2008 Diepholz Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 function val = get(tf, prop_name) 0002 % GET get timeformat properties. 0003 % 0004 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0005 % 0006 % DESCRIPTION: GET get timeformat properties. 0007 % 0008 % CALL: value = get(tf, 'property'); 0009 % 0010 % EXAMPLES: format_str = get(tf, 'format_str'); 0011 % format_nr = get(tf, 'format_nr'); 0012 % default_matlab_str = get(tf, 'default_matlab_str'); 0013 % default_matlab_nr = get(tf, 'default_matlab_nr'); 0014 % default_java_str = get(tf, 'default_java_str'); 0015 % 0016 % VERSION: $Id: get.html,v 1.7 2008/03/31 10:27:44 hewitson Exp $ 0017 % 0018 % HISTORY: 11-02-2008 Diepholz 0019 % Creation 0020 % 0021 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0022 0023 VERSION = '$Id: get.html,v 1.7 2008/03/31 10:27:44 hewitson Exp $'; 0024 CATEGORY = 'Helper'; 0025 DEFAULT_PLIST = plist('property', ''); 0026 0027 val = generic_get(tf, prop_name, DEFAULT_PLIST, VERSION, CATEGORY);