How to disable JMenuBar and JToolBar
I am in a JInternalFrame which was opened within a JDesktopPane which is in a JFrame, and this JFrame has a JMenuBar and a JToolBar.
How can I enable/disable this 2 components?
I tried something like:
((JInternalFrame)this).getDesktopPane().get............
But nothig.

