tabFolder.setSelection(registrationControlCenter);
}
public void openRegistrationControlCenter(String idPerson, String idRegistration) {
if(registrationControlCenter == null || registrationControlCenter.isDisposed()){
registrationControlCenter = new RegistrationControlCenter(tabFolder, SWT.NONE, mainScreen, idRegistration);
registrationControlCenter.display();
}
registrationControlCenter.loadScreen(idPerson);
tabFolder.setSelection(registrationControlCenter);
}