2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8)
3 * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
11 * Jalview is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty
13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along with Jalview. If not, see <http://www.gnu.org/licenses/>.
18 package jalview.appletgui;
22 public class EditNameDialog extends JVDialog
24 TextField id, description;
26 public String getName()
31 public String getDescription()
33 if (description.getText().length() < 1)
39 return description.getText();
43 public EditNameDialog(String name, String desc, String label1,
44 String label2, Frame owner, String title, int width, int height,
47 super(owner, title, true, width, height);
49 Font mono = new Font("Monospaced", Font.PLAIN, 12);
50 Panel panel = new Panel(new BorderLayout());
51 Panel panel2 = new Panel(new BorderLayout());
53 id = new TextField(name, 40);
55 Label label = new Label(label1);
58 panel2.add(label, BorderLayout.WEST);
59 panel2.add(id, BorderLayout.CENTER);
60 panel.add(panel2, BorderLayout.NORTH);
64 panel2 = new Panel(new BorderLayout());
65 description = new TextField(desc, 40);
66 description.setFont(mono);
67 label = new Label(label2);
69 panel2.add(label, BorderLayout.WEST);
70 panel2.add(description, BorderLayout.CENTER);
71 panel.add(panel2, BorderLayout.CENTER);