Home > functions > gui > batch > batch_list > vb_batch_list_update_screen.m

vb_batch_list_update_screen

PURPOSE ^

update screen

SYNOPSIS ^

function vb_batch_list_update_screen(fig)

DESCRIPTION ^

 update screen
 [USAGE]
    vb_batch_list_update_screen(fig)
 [IN]
    fig : figure handle

 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 vb_batch_list_update_screen(fig)
0002 % update screen
0003 % [USAGE]
0004 %    vb_batch_list_update_screen(fig)
0005 % [IN]
0006 %    fig : figure handle
0007 %
0008 % Copyright (C) 2011, ATR All Rights Reserved.
0009 % License : New BSD License(see VBMEG_LICENSE.txt)
0010 
0011 %
0012 % --- Previous check
0013 %
0014 if ~exist('fig', 'var') || isempty(fig) || ~ishandle(fig)
0015     error('invalid figure handle is specified.');
0016 end
0017 
0018 %
0019 % --- Main Procedure
0020 %
0021 
0022 % update view
0023 
0024 %
0025 % --- template parameter setction
0026 %
0027 vb_batch_list_update_template_parm_listbox(fig);
0028 
0029 %
0030 % --- Table editor section
0031 %
0032 vb_batch_list_update_variable_listbox(fig);
0033 
0034 %
0035 % --- Created parameter section
0036 %
0037 
0038 % Created parameter set
0039 vb_batch_list_update_concreate_parm_id_listbox(fig);
0040 
0041 % parameters in a parameter set
0042 vb_batch_list_update_concrete_parm_listbox(fig);
0043 
0044 %
0045 % --- Build batch section
0046 %
0047 vb_batch_list_update_build_part(fig);
0048

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