Faster findjobj - Undocumented Matlab (2024)

11 Comments

My findjobj utility, created in 2007 and updated over the years, has received wide recognition and is employed by numerous Matlab programs, including a few dozen utilities in the Matlab File Exchange. I am quite proud of this utility and find it extremely useful for customizing Matlab controls in many ways that are impossible using standard Matlab properties. I have shown many examples of this in this blog over the past years.
I am happy to announce that I have just uploaded a new version of findjobj to the Matlab File Exchange, which significantly improves the utility’s performance for the most common use-case of a single input and a single output, namely finding the handle of the underlying Java component (peer) of a certain Matlab control:

>> hButton = uicontrol('String','click me!');>> tic, jButton = findjobj(hButton); toc % old findjobjElapsed time is 1.513217 seconds.>> tic, jButton = findjobj(hButton); toc % new findjobjElapsed time is 0.029348 seconds.

The new findjobj is backward-compatible with the old findjobj and with all prior Matlab releases. It is a drop-in replacement that will significantly improve your program’s speed.
The new version relies on several techniques:
First, as I showed last year, in HG2 (R2014 onward), Matlab uipanels have finally become full-featured Java JPanels, that can be accessed and customized in many interesting manners. More to the point here, we can now directly access the underlying JPanel component handle using the uipanel‘s hidden JavaFrame property (thanks to MathWorks for supplying this useful hook!). The new findjobj version detects this and immediately returns this handle if the user specified a uipanel input.
I still do not know of any direct way to retrieve the underlying Java component’s handle for Matlab uicontrols, this has been a major frustration of mine for quite a few years. So, we need to find the containing Java container in which we will recursively search for the control’s underlying Java handle. In the old version of finjobj, we retrieve the containing figure’s JFrame reference and from it the ContentPane handle, and use this handle as the Java container that is recursively searched. This is quite slow when the figure window is heavily-laden with multiple controls. In the new version, we try to use the specified Matlab uicontrol‘s direct parent, which is very often a uipanel. In this case, we can directly retrieve the panel’s JPanel reference as explained above. This results in a must smaller and faster search since we need to recursively search far fewer controls within the container, compared to the figure’s ContentPane.
In addition, I used a suggestion by blog reader Hannes for a faster recursive search that uses the control’s tooltip rather than its size, position and class. Finally, the search order is reversed to search backward from the last child component, since this is the component that will most often contain the requested control peer.
Feel free to download and use the new findjobj version. The code for the fast variant can be found in lines #190-205 and #3375-3415.
Enjoy!
p.s. – as I explained last week, today’s discussion, and in general anything that has to do with Java peers of GUI controls, only relates to the existing JFrame-based figure windows, not to the new web-based uifigure.

Related posts:

  1. FindJObj – find a Matlab component's underlying Java object The FindJObj utility can be used to access and display the internal components of Matlab controls and containers. This article explains its uses and inner mechanism....
  2. FindJObj GUI – display container hierarchy The FindJObj utility can be used to present a GUI that displays a Matlab container's internal Java components, properties and callbacks....
  3. Faster csvwrite/dlmwrite The speed of the builtin csvwrite, dlmwrite functions can be improved dramatically. ...
  4. Additional uicontrol tooltip hacks Matlab's uicontrol tooltips have several limitations that can be overcome using the control's underlying Java object....
  5. The javacomponent function Matlab's built-in javacomponent function can be used to display Java components in Matlab application - this article details its usages and limitations...
  6. Uicontrol callbacks This post details undocumented callbacks exposed by the underlying Java object of Matlab uicontrols, that can be used to modify the control's behavior in a multitude of different events...

FindJObj GUI Java JavaFrame Undocumented feature Undocumented property

Print
11 Responses
  1. Faster findjobj - Undocumented Matlab (2)

    SjoerdReply

    Hi Yair

    First off thank you for this post, and all the other articles the are very interesting, and i have learned a lot out of it.

    Today I downloaded this updated findjobj file, and when running it in Matlab R2015A it gave the following error.

    >> findjobjfindjobj: Number of elements in right hand side does not match number requiredby left hand sideError in findjobj (line 278) handles (dataLen+1:end) = [];

    For the moment I simply solved it by commenting this line, but this is maby not the best solution. So I was wondering if you have any tips to solve this? Is not a very important thing but i thought it was good to let you know.

    Sjoerd

  2. Faster findjobj - Undocumented Matlab (3)

    YaroslavReply

    Hi Yair,

    Kudos on the good work and on your meticulous maintenance. It helps a lot.

    One small thing though: findjobj still doesn’t accept the groot object. For example (Matlab R2015b),

    >> findjobj(groot)findjobj: The following error occurred converting from matlab.ui.Root to handle:Conversion to handle from matlab.ui.Root is not possible.Error in findjobj/traverseContainer (line 523) handles(thisIdx) = handle(jcontainer,'callbackproperties');Error in findjobj (line 277) traverseContainer(container,0,1);

    Nevertheless, the old syntax still works:

    >> findjobj(0)ans =handle: 1-by-1170

    Cheers

  3. Faster findjobj - Undocumented Matlab (4)

    MeadeReply

    Hi Yair,

    I’ve been using your excellent utility in a deployed toolbox for about a year now.
    Anyway, when I updated, I know get the following error

    Java exception occurred:java.lang.ArrayIndexOutOfBoundsException: No such child: 4at java.awt.Container.getComponent(Unknown Source)

    This seems to be related to this call:

    jscroll = findjobj(MyUitable) %get jScroll UI element under Matlab tablerhv = jscroll.getComponent(4);

    This call has worked without issue in an older version of |findjobj| (% $Revision: 1.46 $ $Date: 2015/01/12 13:54:47 $)
    I’m also directed to a MW page about deprecating JFrame support.

    Any thoughts would be most appreciated!
    Best,
    Meade

  • Faster findjobj - Undocumented Matlab (5)

    Yair AltmanReply

    @Meade – as you can see, the error is not in the findjobj call but in your code (jscroll.getComponent(4)). You need to check the jscroll object that findjobj returned and see why there is no 5th component (Java indexes start from 0, so “4” means “5th”). You can do something like this:

    >> jscroll = findjobj(MyUitable)>> jscroll.list
    • Faster findjobj - Undocumented Matlab (6)

      Meade

      @Yair – Thanks so much for the reply.
      I’ve been using your .list tip to dig into this more deeply and it seems that the new findjobj function returns a different (shorter) list of components than the older revision. This seems to be why my subsequent call for

      jscroll.getComponent(4);

      fails.
      For example:

      jscroll = findobj(info);jscroll.list

      yields:

      com.mathworks.hg.peer.utils.UIScrollPane[, 0, 0, 0x0, invalid, ..., viewportBorder = ]javax.swing.JViewport[, 0, 0, 0x0, invalid, ..., scrollUnderway = false]com.mathworks.hg.peer.ui.UITablePeer$23[hInfoTable, 0, 0, 0x0, invalid, ..., showHorizontalLines = true, showVerticalLines = true]javax.swing.CellRendererPane[, 0, 0, 0x0, invalid, hidden]com.mathworks.hg.peer.utils.UIScrollPane$1[, 0, 0, 0x0, invalid, ..., blockIncrement = 10, orientation = VERTICAL, unitIncrement = 1]com.sun.java.swing.plaf.windows.WindowsScrollBarUI$WindowsArrowButton[, 0, 0, 0x0, invalid, ..., defaultCapable = true]com.sun.java.swing.plaf.windows.WindowsScrollBarUI$WindowsArrowButton[, 0, 0, 0x0, invalid, ..., defaultCapable = true]com.mathworks.hg.peer.utils.UIScrollPane$2[, 0, 0, 0x0, invalid, ..., blockIncrement = 10, orientation = HORIZONTAL, unitIncrement = 1]com.sun.java.swing.plaf.windows.WindowsScrollBarUI$WindowsArrowButton[, 0, 0, 0x0, invalid, ..., defaultCapable = true]com.sun.java.swing.plaf.windows.WindowsScrollBarUI$WindowsArrowButton[, 0, 0, 0x0, invalid, ..., defaultCapable = true]

      While

      jscrollOLD = findobjOLD(info);jscrollOLD.list

      yields:

      com.mathworks.hg.peer.utils.UIScrollPane[, 0, 0, 500 x140, invalid, ..., viewportBorder = ]javax.swing.JViewport[, 375, 1, 124 x121, invalid, ..., scrollUnderway = false]com.mathworks.hg.peer.ui.UITablePeer$23[hInfoTable, 0, 0, 397 x120, invalid, ..., showHorizontalLines = true, showVerticalLines = true]javax.swing.CellRendererPane[, 0, 0, 0x0, invalid, hidden]com.mathworks.hg.peer.utils.UIScrollPane$1[, 0, 0, 0x0, invalid, hidden, ..., blockIncrement = 10, orientation = VERTICAL, unitIncrement = 1]com.sun.java.swing.plaf.windows.WindowsScrollBarUI$WindowsArrowButton[, 0, 0, 0x0, invalid, ..., defaultCapable = true]com.sun.java.swing.plaf.windows.WindowsScrollBarUI$WindowsArrowButton[, 0, 0, 0x0, invalid, ..., defaultCapable = true]com.mathworks.hg.peer.utils.UIScrollPane$2[, 375, 122, 124 x17, invalid, ..., blockIncrement = 10, orientation = HORIZONTAL, unitIncrement = 1]com.sun.java.swing.plaf.windows.WindowsScrollBarUI$WindowsArrowButton[, 107, 0, 17 x17, invalid, ..., defaultCapable = true]com.sun.java.swing.plaf.windows.WindowsScrollBarUI$WindowsArrowButton[, 0, 0, 17 x17, invalid, ..., defaultCapable = true]javax.swing.JViewport[, 375, 1, 124 x0, invalid, ..., scrollUnderway = false]javax.swing.JLabel[, 1, 1, 374 x0, invalid, ..., verticalAlignment = CENTER, verticalTextPosition = CENTER]

      I’m sure that I’m missing something obvious, but any insight you have would be greatly appreciated.
      (As a final note, curiously, if I call the older version of findjobj first, then the newer version will successfully find all components. Thus, there is some sort of order dependence?! Weird!

      Thanks so much,
      Meade

  • Faster findjobj - Undocumented Matlab (7)

    Malcolm LidierthReply

    @Meade
    Not sure about this. Are your components on the EDT? Are the components visible? You might try a drawnow() and see if that order dependence disappears. Also see javaObjectEDT.
    ML

    • Faster findjobj - Undocumented Matlab (8)

      Meade

      @Malcolm
      I do not know if they are all on EDT. I’m an absolute java novice, but from reading, I cannot say whether all components are being accessed in the same thread. This seems like a question that Yair might be able to answer since all the calls are being made within the findjobj call.

      I understand this all seems stranges, but I get the errors while literally only changing the version of findjobj that is being used, so the difference must be related to that. I’m happy/willing/excited to make changes since Yair has made such dramatic speed improvements in his utility, I’m just at a loss as where to start.

      Thanks for all the good suggestions.
      Meade

  • Faster findjobj - Undocumented Matlab (9)

    Malcolm LidierthReply

    Meade

    Create your JScrollPane through a call to
    >> jscroll=javaObjectEDT(‘javax.swing.JScrollPane’);

    That on it’s own might(??) fix all your problems as subsequent methods calls to the scroll pane should be despatched via the EDT. If not do post your construction code. Very few Swing methods are inherently thread-safe and this does look like a treading issue.

  • Faster findjobj - Undocumented Matlab (10)

    MeadeReply

    @Malcolm,

    You’ve got my attention! My situation is that the JScrollPane is actually created by the uitable command. Is it possible to tweak this matlab command in order to accomplish what you’ve suggested? I was hoping to avoid a pure java creation, since I’m more comfortable creating the gui using Matlab methods.
    %(begin code)

    info = uitable('Parent',hLeft,... 'Data',cell(5,1),... 'ColumnName', [],... 'RowName',infoCell,... 'RowStriping','off',... 'ColumnWidth', {397},... 'ColumnFormat', columnformat,... 'ColumnEditable', false,... 'Position',[30, 10, 500, 140 ],... 'FontSize',10,... 'TooltipString',TTstr.TSVinfo,... 'BackgroundColor',[0.94 0.94 0.94],... 'Tag','hInfoTable');%%% Java voodoo for Info tablejscroll=findjobj(info);

    % end code

    Thanks again for all the help.
    Meade

    • Faster findjobj - Undocumented Matlab (11)

      Malcolm LidierthReply

      @Meade

      You can call jscroll methods in the EDT if you can get a reference to it and call javaObjectEDT on the reference:

      jscroll=javaObjectEDT(jscroll)

      If you have problems after a javaObjectEDT you might try

      jscroll.revalidate();% Does layoutjscroll.repaint();% Paints componentdrawnow()

      Revalidate and repaint are both thread-safe and will be run on the EDT by Swing.

      I am on a Mac and all seems to work fine without tweaks (and the same with the latest or older findjobj) so I can’t be much help but here’s what I see anyway:

      >> info = uitable('Parent',figure,... 'Data',cell(5,1),... 'ColumnName', [],... 'RowName',{'1', '2', '3','4','5'},... 'RowStriping','off',... 'ColumnWidth', {397},... 'ColumnEditable', false,... 'Position',[30, 10, 500, 140 ],... 'FontSize',10,... 'BackgroundColor',[0.94 0.94 0.94],... 'Tag','hInfoTable');>> jscroll=findjobj(info)jscroll =javahandle_withcallbacks.com.mathworks.hg.peer.utils.UIScrollPane

      All seems OK to me:

      >> jscroll.getComponents()ans = java.awt.Component[]: [1×1 javax.swing.JViewport ] [1×1 com.mathworks.hg.peer.utils.UIScrollPane$1] [1×1 com.mathworks.hg.peer.utils.UIScrollPane$2] [1×1 javax.swing.JViewport ] [1×1 javax.swing.JViewport ] [1×1 javax.swing.JList ]
  • Faster findjobj - Undocumented Matlab (12)

    claudioReply

    Hi Yair,

    thanks a lot for your work!
    I built a figure with some tabs. in one specific tab i set another small uitabgroup (and tabs) to show some tables.
    I can’t take the uitabgroup handle from command window (empty value is returned) but I can see the “object” and
    modify all his properties from findjobj window.
    what is the problem? how can I continue to use findjobj from command window also in this case?

    best regards
    claudio

  • Leave a Reply
    HTML tags such as <b> or <i> are accepted.
    Wrap code fragments inside <pre lang="matlab"> tags, like this:
    <pre lang="matlab">
    a = magic(3);
    disp(sum(a))
    </pre>
    I reserve the right to edit/delete comments (read the site policies).
    Not all comments will be answered. You can always email me (altmany at gmail) for private consulting.
    Faster findjobj - Undocumented Matlab (2024)

    References

    Top Articles
    Xenotypes - RimWorld Wiki
    Escape From Tarkov: Streets Guide
    Menards Thermal Fuse
    What Are Romance Scams and How to Avoid Them
    Dew Acuity
    Craigslist Motorcycles Jacksonville Florida
    What Happened To Dr Ray On Dr Pol
    Cosentyx® 75 mg Injektionslösung in einer Fertigspritze - PatientenInfo-Service
    T&G Pallet Liquidation
    Aita Autism
    Jesus Calling Oct 27
    Love In The Air Ep 9 Eng Sub Dailymotion
    Colorado mayor, police respond to Trump's claims that Venezuelan gang is 'taking over'
    Arre St Wv Srj
    Watch The Lovely Bones Online Free 123Movies
    Royal Cuts Kentlands
    67-72 Chevy Truck Parts Craigslist
    All Obituaries | Gateway-Forest Lawn Funeral Home | Lake City FL funeral home and cremation Lake City FL funeral home and cremation
    1 Filmy4Wap In
    Geico Car Insurance Review 2024
    Happy Shuttle Cancun Review
    Proto Ultima Exoplating
    Rlcraft Toolbelt
    Word Trip Level 359
    Half Inning In Which The Home Team Bats Crossword
    Kattis-Solutions
    Tas Restaurant Fall River Ma
    Http://N14.Ultipro.com
    Senior Houses For Sale Near Me
    Best Weapons For Psyker Darktide
    Etowah County Sheriff Dept
    Quake Awakening Fragments
    Philadelphia Inquirer Obituaries This Week
    Ktbs Payroll Login
    Trivago Myrtle Beach Hotels
    Adam Bartley Net Worth
    Pro-Ject’s T2 Super Phono Turntable Is a Super Performer, and It’s a Super Bargain Too
    Pokemon Reborn Gyms
    Bekkenpijn: oorzaken en symptomen van pijn in het bekken
    Marcal Paper Products - Nassau Paper Company Ltd. -
    Spurs Basketball Reference
    Cch Staffnet
    Air Sculpt Houston
    How the Color Pink Influences Mood and Emotions: A Psychological Perspective
    Jigidi Free Jigsaw
    Gonzalo Lira Net Worth
    Mega Millions Lottery - Winning Numbers & Results
    Wzzm Weather Forecast
    Bedbathandbeyond Flemington Nj
    28 Mm Zwart Spaanplaat Gemelamineerd (U999 ST9 Matte | RAL9005) Op Maat | Zagen Op Mm + ABS Kantenband
    Latest Posts
    Article information

    Author: Msgr. Refugio Daniel

    Last Updated:

    Views: 5293

    Rating: 4.3 / 5 (74 voted)

    Reviews: 81% of readers found this page helpful

    Author information

    Name: Msgr. Refugio Daniel

    Birthday: 1999-09-15

    Address: 8416 Beatty Center, Derekfort, VA 72092-0500

    Phone: +6838967160603

    Job: Mining Executive

    Hobby: Woodworking, Knitting, Fishing, Coffee roasting, Kayaking, Horseback riding, Kite flying

    Introduction: My name is Msgr. Refugio Daniel, I am a fine, precious, encouraging, calm, glamorous, vivacious, friendly person who loves writing and wants to share my knowledge and understanding with you.