Home > functions > gui > batch > batch_mgr > vb_batch_mgr_get_name.m

vb_batch_mgr_get_name

PURPOSE ^

The name of the manager instance. It is used on GUI.

SYNOPSIS ^

function [name] = vb_batch_mgr_get_name(obj)

DESCRIPTION ^

 The name of the manager instance. It is used on GUI.
 [USAGE]
    [name] = vb_batch_mgr_get_name(<obj>);
 [IN]
    obj : vb_batch_mgr object
 [OUT]
    name : name of the manager instance [STRING]

 Copyright (C) 2011, ATR All Rights Reserved.
 License : New BSD License(see VBMEG_LICENSE.txt)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function [name] = vb_batch_mgr_get_name(obj)
0002 % The name of the manager instance. It is used on GUI.
0003 % [USAGE]
0004 %    [name] = vb_batch_mgr_get_name(<obj>);
0005 % [IN]
0006 %    obj : vb_batch_mgr object
0007 % [OUT]
0008 %    name : name of the manager instance [STRING]
0009 %
0010 % Copyright (C) 2011, ATR All Rights Reserved.
0011 % License : New BSD License(see VBMEG_LICENSE.txt)
0012 
0013 %
0014 % --- Previous check
0015 %
0016 if ~exist('obj', 'var')
0017     error('obj is a required parameter.');
0018 end
0019 
0020 %
0021 % --- Main Procedure
0022 %
0023 name = obj.name;

Generated on Tue 27-Aug-2013 11:46:04 by m2html © 2005