view m-toolbox/m/gui/ltpdv/callbacks/ltpdv_get_selected_objs.m @ 2:18e956c96a1b database-connection-manager

Add LTPDADatabaseConnectionManager implementation. Matlab code
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Sun, 04 Dec 2011 21:23:09 +0100
parents f0afece42f48
children
line wrap: on
line source

function objs = ltpdv_get_selected_objs(mainfig)

% LTPDV_GET_SELECTED_OBJS gets the selected objects from the object list.
% 
% M Hewitson 22-04-08
% 
% $Id: ltpdv_get_selected_objs.m,v 1.1 2008/05/11 10:38:43 hewitson Exp $
% 

% Get selected rows
rows = getappdata(mainfig, 'ObjectListSelectedRows');
% Get current object list
objs = getappdata(mainfig, 'LTPDAobjects');
% Return required objects
objs = objs(rows);

% END