NbBundle.getMessage(QueryNode.class, "QueryNode.actions.rename.title"));
question.setInputText(query.getName());
if (DialogDisplayer.getDefault().notify(question) == NotifyDescriptor.OK_OPTION) {
String input = question.getInputText();
if (input != null && !input.isEmpty()) {
filterController.rename(query, input);
}
}
}
}