view m-toolbox/classes/@repogui/cb_refreshObjsList.m @ 50:7d2e2e065cf1
database-connection-manager
Update unit tests
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Wed, 07 Dec 2011 17:24:37 +0100 (2011-12-07)
parents
f0afece42f48
children
line source
+ − % CB_REFRESHOBJSLIST callback to refresh the list of objects.
+ − %
+ − % M Hewitson
+ − %
+ − % $Id: cb_refreshObjsList.m,v 1.1 2009/02/03 08:15:30 hewitson Exp $
+ − %
+ − function cb_refreshObjsList(varargin)
+ −
+ − % get a list of objects
+ − objs = repogui.getWorkspaceObjs();
+ −
+ − % set list
+ − setWorkspaceObjsList(varargin{end}, objs);
+ −
+ − end
+ −