Mercurial > hg > ltpda
view m-toolbox/classes/@repogui2/cb_mainfigClose.m @ 29:54f14716c721 database-connection-manager
Update Java code
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% CB_MAINFIGCLOSE close callback for repogui2. % % M Hewitson 22-09-08 % % $Id: cb_mainfigClose.m,v 1.3 2011/04/08 08:56:36 hewitson Exp $ % function cb_mainfigClose(varargin) mainfig = varargin{end}; if ~isempty(mainfig) && isa(mainfig.connection, 'database') disp('* closing open database connection'); close(mainfig.connection); end disp('* Goodbye from the LTPDA Repository Interface *') delete(mainfig.handle) delete(mainfig) % delete 'ans' variable associated with this repogui evalin('base', 'if exist(''ans'', ''var'') && isa(ans, ''repogui2''), clear(''ans''); end'); end