www.gusucode.com > matlabxl 工具箱 matlab 源码程序 > matlabxl/getClassFiles.m

    function files = getClassFiles()
% getClassFiles returns all the files under "fileset.classes" in a
% Deploytool project
%
%   getClassFiles is a utility for MATLAB Builder EX. This utility 
%   returns all the class files in the project that is currently opened in 
%   Deploytool. Since only one class is allowed in an Excel Add-in project,
%   all the files are from the same class.
%   
%
%
%   SYNTAX:
%       getClassFiles()
%
%   USAGE:
%       getClassFiles()
%           Returns all the class files in a Deploytool project
%
%
%
% 
%
% Copyright 2010-2013, The MathWorks, Inc.
%

fws=com.mathworks.toolbox.compiler.services.FunctionWizardService.getInstance();
files=fws.getClassFiles();  

end