Home > classes > @timeformat > get.m

get

PURPOSE ^

GET get timeformat properties.

SYNOPSIS ^

function val = get(tf, prop_name)

DESCRIPTION ^

 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.m,v 1.1 2008/02/11 17:28:45 ingo Exp $

 HISTORY:     11-02-2008 Diepholz
                 Creation

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

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.m,v 1.1 2008/02/11 17:28:45 ingo Exp $
0017 %
0018 % HISTORY:     11-02-2008 Diepholz
0019 %                 Creation
0020 %
0021 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0022 
0023 VERSION       = '$Id: get.m,v 1.1 2008/02/11 17:28:45 ingo Exp $';
0024 CATEGORY      = 'Helper';
0025 DEFAULT_PLIST =  plist('property', '');
0026 
0027 val = generic_get(tf, prop_name, DEFAULT_PLIST, VERSION, CATEGORY);

Generated on Mon 31-Mar-2008 13:54:54 by m2html © 2003