2 * Jalview - A Sequence Alignment Editor and Viewer (Development Version 2.4.1)
3 * Copyright (C) 2009 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 package jalview.appletgui;
23 public class EditNameDialog extends JVDialog
25 TextField id, description;
27 public String getName()
32 public String getDescription()
34 if (description.getText().length() < 1)
40 return description.getText();
44 public EditNameDialog(String name, String desc, String label1,
45 String label2, Frame owner, String title, int width, int height,
48 super(owner, title, true, width, height);
50 Font mono = new Font("Monospaced", Font.PLAIN, 12);
51 Panel panel = new Panel(new BorderLayout());
52 Panel panel2 = new Panel(new BorderLayout());
54 id = new TextField(name, 40);
56 Label label = new Label(label1);
59 panel2.add(label, BorderLayout.WEST);
60 panel2.add(id, BorderLayout.CENTER);
61 panel.add(panel2, BorderLayout.NORTH);
65 panel2 = new Panel(new BorderLayout());
66 description = new TextField(desc, 40);
67 description.setFont(mono);
68 label = new Label(label2);
70 panel2.add(label, BorderLayout.WEST);
71 panel2.add(description, BorderLayout.CENTER);
72 panel.add(panel2, BorderLayout.CENTER);