if (emptyPathValidator.validate(NetteOptions.getInstance().getNetteFile())) {
return NbBundle.getMessage(NewNetteProjectPanel.class, "ERR_no_nette_file");
}
Validable loaderPathValidator = new NetteLoaderExistsValidator();
if (!loaderPathValidator.validate(NetteOptions.getInstance().getNetteFile())) {
return NbBundle.getMessage(NewNetteProjectPanel.class, "ERR_nette_file_not_exists");
}
}
return null;