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

Editing Snippet ID: #1005667
Snippet name:
Category, Type:
Content:
1
2
3
4
5
6
7
8
9
10
11
12
13
static void setFrameBounds(final Component c, final Rectangle 
bounds) {
  if (c != null) swing {
    JFrame f = getFrame(c);
    if (f != null) {
      f.setBounds(bounds);
      revalidate(f);
    }
  }
}
static void setFrameBounds(Component c, int x, int y, int w, int h) 
{
  setFrameBounds(c, new Rectangle(x, y, w, h));
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Comment:
Public (visible to everyone):
Created: 2016-12-02 15:52:39

This page without fancy editor.