HTML msg = new HTML( "<b>" + constants.ThereWereErrorsValidatingThisPackageConfiguration() + "</b>" ); //NON-NLS
packageConfigurationValidationResult.add( msg );
Button show = new Button( constants.ViewErrors() );
show.addClickHandler( new ClickHandler() {
public void onClick(ClickEvent event) {
ValidationMessageWidget wid = new ValidationMessageWidget( validatedResponse.errorHeader,
validatedResponse.errorMessage );
wid.show();
}
} );
packageConfigurationValidationResult.add( show );
} else {
Image img = new Image( images.greenTick() );