How do I create Listeners for my Java GUI in MATLAB?

18 views (last 30 days)
How do I create Listeners for my Java GUI in MATLAB?
I created a Java GUI using MATLAB code in MATLAB, instead of creating and compiling a .java file. How do I create Listener objects, to associate with the objects in the GUI?

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 22 Jan 2010
在MATLAB中使用Java对象时,可以设置callbacks for the objects that correspond to the Listeners you would associate with the objects in Java code.
importjavax.swing.*;
% create the frame
JF = JFrame;
JF.setSize(300,300);
% create the button
JB = JButton('Press me');
JF.getContentPane.add(JB)
%这个回调mouseCli对应cked method of
% the MouseListener
set(JB,'MouseClickedCallback','disp(''pressed the button'')')
% display the frame
JF.setVisible(true)
The callbacks can be:
1) A string that will be executed as a MATLAB command in the base workspace
2) A function handle where the inputs to the function will always be the handle for the object, and event data, respectively.
3) A cell array where the first element is a function name or function handle. The first two inputs to the function are automatically the handle for the Java object, and an Event object. The other elements of the cell array are passed as the third, fourth, etc. inputs to the function.
Please note that listeners can only be created for classes accessible through the main Java search path defined by classpath.txt.

More Answers (0)

MathWorks Support

下载188bet金宝搏

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!