applyButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed (ActionEvent arg0) {
Logger.logDebug("Trying path: " + installPath.getText());
CheckInstallPath checkResult = new CheckInstallPath(installPath.getText());
if (checkResult.action == Action.BLOCK) {
ErrorUtils.tossError(checkResult.message + "\nPlease select again", checkResult.localizedMessage + "\n" + I18N.getLocaleString("CIP_SELECTAGAIN"));
} else if (checkResult.action == Action.WARN) {
ErrorUtils.tossError(checkResult.message + "\nPlease change your installation location under options tab", checkResult.localizedMessage +