Rectangle splashRect = shell.getBounds();
Rectangle displayRect = display.getBounds();
int x = (displayRect.width - splashRect.width) / 2;
int y = (displayRect.height - splashRect.height) / 2;
shell.setLocation(x, y);
shell.pack();
shell.open();
splashComposite.progressBar.setMinimum(0);
splashComposite.progressBar.setMaximum(tasks.length);
for(int i=0; i<tasks.length; i++) {