Is there any way to minimize/maximize the JinternalFrame without clicking the minimize/maximize button at the top-right corner of the jinternalframe?
I followed this thread programmatically minimize a JInternalFrame?, specifically set
jinterframe.setIcon(false)
But i didn't work.
Thanks.
The method
getAllFrames()
"Returns iconified frames as well as expanded frames." On Mac OS X, iconified frames may be ignored. The example below demonstrates the anomaly and employs aList<JInternalFrame>
to compensate.works as I expected, you have to check JInternalFrame#isIconifiable() (eeerght this Veto is really ****)