private void askForNewName(final ProjectLocation location) {
TextFieldInput input = new ProjectNameInput(Strings.get("Recent.Rename.Title"),
Strings.get("Recent.Rename.Caption"));
input.setInitialValue(location.getProjectName());
String newName = input.showInDialog();
processName(location, newName);
}
private void processName(ProjectLocation location, String newName) {
if (isNewName(location, newName)) {