Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

7
LINES

< > BotCompany Repo | #1003666 // makeFrameVisible - makes it visible, also from "iconified"

JavaX fragment (include)

static void makeFrameVisible(Component c) {
  JFrame f = getFrame(c);
  if (f == null) ret;
  f.setVisible(true);
  if (f.getState() == Frame.ICONIFIED)
    f.setState(Frame.NORMAL);
}

download  show line numbers  debug dex  old transpilations   

Travelled to 15 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, ddnzoavkxhuk, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, onxytkatvevr, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1003666
Snippet name: makeFrameVisible - makes it visible, also from "iconified"
Eternal ID of this version: #1003666/1
Text MD5: 27a7f9caf82d81124584c2e89a66f601
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2016-08-08 16:46:17
Source code size: 190 bytes / 7 lines
Pitched / IR pitched: No / No
Views / Downloads: 528 / 542
Referenced in: #1006654 - Standard functions list 2 (LIVE, continuation of #761)