/**
* Validates project for possible conflicts and incomplete mappings.
*/
public void performAction(ActionEvent e) {
Validator val = getCurrentProject().getValidator();
int validationCode = val.validate();
// If there were errors or warnings at validation, display them
if (validationCode >= ValidationDisplayHandler.WARNING) {
ValidatorDialog.showDialog(Application.getFrame(), val);
}