}//GEN-LAST:event_ivyFileBrowseBtnActionPerformed
private void ivySettingsFileBrowseBtnActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_ivySettingsFileBrowseBtnActionPerformed
FileChooserBuilder builder = new FileChooserBuilder(Utilities.FILE_CHOOSER_BUILDER_KEY);
builder.setTitle(NbBundle.getMessage(CustomizerPanel.class, "CustomizerPanel.ivySettingsFileChooser.title"));
File ivyFileChosen = builder.showOpenDialog();
if (ivyFileChosen != null) {
String filePath = ivyFileChosen.toURI().toString();
if (isValidIvySettingsFile(filePath)) {
ivySettingsFileText.setText(filePath);