Clover icon

Coverage Report

  1. Project Clover database Thu Aug 13 2020 12:04:21 BST
  2. Package jalview.gui

File EditNameDialog.java

 

Coverage histogram

../../img/srcFileCovDistChart0.png
56% of files have more coverage

Code metrics

4
23
4
1
124
69
7
0.3
5.75
4
1.75

Classes

Class Line # Actions
EditNameDialog 38 23 7
0.00%
 

Contributing tests

No tests hitting this source file were found.

Source view

1    /*
2    * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3    * Copyright (C) $$Year-Rel$$ The Jalview Authors
4    *
5    * This file is part of Jalview.
6    *
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
10    * of the License, or (at your option) any later version.
11    *
12    * Jalview is distributed in the hope that it will be useful, but
13    * WITHOUT ANY WARRANTY; without even the implied warranty
14    * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15    * PURPOSE. See the GNU General Public License for more details.
16    *
17    * You should have received a copy of the GNU General Public License
18    * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19    * The Jalview Authors are detailed in the 'AUTHORS' file.
20    */
21    package jalview.gui;
22   
23    import jalview.util.MessageManager;
24   
25    import java.awt.FlowLayout;
26    import java.awt.Font;
27   
28    import javax.swing.BoxLayout;
29    import javax.swing.JButton;
30    import javax.swing.JComponent;
31    import javax.swing.JLabel;
32    import javax.swing.JPanel;
33    import javax.swing.JTextField;
34   
35    /**
36    * A dialog where a name and description may be edited
37    */
 
38    public class EditNameDialog
39    {
40    private static final Font COURIER_12 = new Font("Courier", Font.PLAIN,
41    12);
42    JTextField id;
43   
44    JTextField description;
45   
46    JButton ok = new JButton(MessageManager.getString("action.accept"));
47   
48    JButton cancel = new JButton(MessageManager.getString("action.cancel"));
49   
50    private JPanel panel;
51   
 
52  0 toggle public String getName()
53    {
54  0 return id.getText();
55    }
56   
 
57  0 toggle public String getDescription()
58    {
59  0 if (description.getText().length() < 1)
60    {
61  0 return null;
62    }
63    else
64    {
65  0 return description.getText();
66    }
67    }
68   
69    /**
70    * Constructor
71    *
72    * @param name
73    * @param desc
74    * @param label1
75    * @param label2
76    */
 
77  0 toggle public EditNameDialog(String name, String desc, String label1,
78    String label2)
79    {
80  0 panel = new JPanel();
81  0 panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
82  0 JPanel namePanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
83  0 JPanel descriptionPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
84  0 panel.add(namePanel);
85  0 panel.add(descriptionPanel);
86   
87  0 JLabel nameLabel = new JLabel(label1);
88  0 nameLabel.setFont(COURIER_12);
89  0 namePanel.add(nameLabel);
90   
91  0 id = new JTextField(name, 40);
92  0 namePanel.add(id);
93   
94  0 description = new JTextField(desc, 40);
95   
96    /*
97    * optionally add field for description
98    */
99  0 if (desc != null || label2 != null)
100    {
101  0 JLabel descLabel = new JLabel(label2);
102  0 descLabel.setFont(COURIER_12);
103  0 descriptionPanel.add(descLabel);
104  0 descriptionPanel.add(description);
105    }
106    }
107   
108    /**
109    * Shows the dialog, and runs the response action if OK is selected
110    *
111    * @param action
112    */
 
113  0 toggle public void showDialog(JComponent parent, String title,
114    Runnable action)
115    {
116  0 Object[] options = new Object[] { MessageManager.getString("action.ok"),
117    MessageManager.getString("action.cancel") };
118  0 JvOptionPane.newOptionDialog(parent).setResponseHandler(0, action)
119    .showInternalDialog(panel, title,
120    JvOptionPane.YES_NO_CANCEL_OPTION,
121    JvOptionPane.PLAIN_MESSAGE, null, options,
122    MessageManager.getString("action.ok"));
123    }
124    }