Skip to content
This repository was archived by the owner on Oct 26, 2021. It is now read-only.

Commit 0610f2f

Browse files
committed
renaming
1 parent f17039e commit 0610f2f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/de/mpc/proteogenomics/pipeline/gui/ProteoGenomicsPipelineGUI.java renamed to src/de/mpc/proteogenomics/pipeline/gui/BacterialProteoGenomicPipelineGUI.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
import javax.swing.text.DefaultCaret;
2020

2121

22-
public class ProteoGenomicsPipelineGUI {
22+
public class BacterialProteoGenomicPipelineGUI {
2323

2424
private JFrame mainGUIFrame;
2525

2626

2727
/**
2828
* Create the application.
2929
*/
30-
public ProteoGenomicsPipelineGUI() {
30+
public BacterialProteoGenomicPipelineGUI() {
3131
initialize();
3232
}
3333

@@ -37,7 +37,7 @@ public ProteoGenomicsPipelineGUI() {
3737
*/
3838
private void initialize() {
3939
mainGUIFrame = new JFrame();
40-
mainGUIFrame.setTitle("Bacterial ProteoGenomics Pipeline");
40+
mainGUIFrame.setTitle("Bacterial Proteogenomic Pipeline");
4141
mainGUIFrame.setMinimumSize(new Dimension(800, 600));
4242
mainGUIFrame.setBounds(100, 100, 1200, 800);
4343
mainGUIFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
@@ -107,7 +107,7 @@ public static void main(String[] args) {
107107
EventQueue.invokeLater(new Runnable() {
108108
public void run() {
109109
try {
110-
ProteoGenomicsPipelineGUI window = new ProteoGenomicsPipelineGUI();
110+
BacterialProteoGenomicPipelineGUI window = new BacterialProteoGenomicPipelineGUI();
111111
window.mainGUIFrame.setVisible(true);
112112
} catch (Exception e) {
113113
e.printStackTrace();

0 commit comments

Comments
 (0)