public static String[] showSnapEditDialog(Component parent, String title,
String name, String comment) {
// create a set of fields allowing them to edit the name/comment
JTextField snapshotName = new JTextField(name);
snapshotName.selectAll();
JTextArea snapshotComment = new JTextArea(comment, 3, 25);
snapshotComment.setWrapStyleWord(true);
snapshotComment.setLineWrap(true);
Object message = new Object[] {
resources.getString("Save_Baseline.Save_Dialog.Name_Prompt"),