List of usage examples for java.awt Component addNotify
public void addNotify()
From source file:pl.edu.icm.visnow.lib.utils.ImageUtilities.java
public static void centerComponentToContainer(Component component, Component container) { if (container.isDisplayable() == false) { container.addNotify(); }/*from w w w.j a v a 2 s.co m*/ component.setLocation((container.getWidth() - component.getWidth()) / 2, (container.getHeight() - component.getHeight()) / 2); }