validators.add(new ResponsableValidator(responsableInfo.getResponsableText(), personalInfo.getBirthdateText(), screenMessageLabel, Validator.ERROR_REQUIRED_RESPONSABLENAME));
validators.add(new CPFValidator(responsableInfo.getCPFText(), screenMessageLabel, Validator.ERROR_REQUIRED_CPF));
validators.add(new EmptyValidator(employmentData.getBeginDateText(), screenMessageLabel, Validator.ERROR_REQUIRED_BEGINDATE));
validators.add(new EmptyValidator(employmentData.getPositionCombo(), screenMessageLabel, Validator.ERROR_REQUIRED_POSITION));
validators.add(new TransactionDateValidator(screenMessageLabel,Validator.ERROR_REQUIRED_DATA_TRANSACTION_INVALID));
if (systemUser.getSelection()) {
validators.add(new EmptyValidator(userInfo.getUsernameText(), screenMessageLabel, Validator.ERROR_REQUIRED_USERNAME));
validators.add(new UserNameValidator(userInfo.getUsernameText(), idText, screenMessageLabel, Validator.ERROR_USERNAME_ALREADY_EXISTS));
validators.add(new EmptyValidator(userInfo.getPasswordText(), screenMessageLabel, Validator.ERROR_REQUIRED_PASSWORD));