6

Is there any way to programmatically minimize a JInternalFrame?

Steven
  • 920
  • 2
  • 9
  • 21
javamonkey79
  • 17,443
  • 36
  • 114
  • 172

1 Answers1

12

setIcon() "Iconifies or de-iconifies this internal frame…"

trashgod
  • 203,806
  • 29
  • 246
  • 1,045
  • 1
    and JInternalFrame#addInternalFrameListener() return all posible statuses for that +1 – mKorbel Jun 25 '11 at 09:48
  • Ug, I knew it was probably something simple. The method name is misleading to me. setIcon seems to indicate that you would be setting the image icon - or maybe I'm no good at UI speak :) at any rate, thanks! – javamonkey79 Jun 25 '11 at 23:05
  • Yes, this terminology is confusing; I've edited/added tags, accordingly. – trashgod Jun 26 '11 at 01:26