document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.  private void centralizaForm(JInternalFrame frame) {
  2.         Dimension desktopSize = frmMdi.getSize();
  3.         Dimension jInternalFrameSize = frame.getSize();
  4.         frame.setLocation((desktopSize.width - jInternalFrameSize.width) / 2,
  5.                 (desktopSize.height - jInternalFrameSize.height) / 2);
  6.     }
');