view m-toolbox/classes/@workspaceBrowser/getSelectedObjects.m @ 11:9174aadb93a5 database-connection-manager

Add LTPDA Repository utility functions into utils.repository
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +0100
parents f0afece42f48
children
line wrap: on
line source

% GETSELECTEDOBJECTS returns a cell-array of the objects selected in the
% workspace browser.
% 
% 
function objs = getSelectedObjects(wb)
  
  vars = wb.hdl.getSelectedPaths;
  
  objs = {};
  for kk=1:numel(vars)
    var = char(vars(kk));
    var = strrep(var, 'workspace,', '');
    var = strrep(var, '[', '');
    var = strrep(var, ']', '');
    var = strrep(var, ' ', '');
    var = strrep(var, ',', '.');
    
    try
      % get the variable
      cmd = sprintf('obj = evalin(''base'', ''%s'');', var);
      eval(cmd);
      objs = [objs {obj}];
    catch
      error('### variable ''%s'' not available in the workspace. Refresh the browser.', var);
    end
  end
  
end