Blame view

src/main/java/eu/omp/irap/vespa/epntapclient/EpnTapMainApp.java 2.82 KB
1353e182   Nathanael Jourdane   Add minimal eleme...
1
2
3
4
5
/*
 * This file is a part of EpnTAPClient.
 * This program aims to provide EPN-TAP support for software clients, like CASSIS spectrum analyzer.
 * See draft specifications: https://voparis-confluence.obspm.fr/pages/viewpage.action?pageId=559861
 * Copyright (C) 2016 Institut de Recherche en Astrophysique et Planétologie.
1e543ea0   Nathanael Jourdane   Code clean-up
6
 *
1353e182   Nathanael Jourdane   Add minimal eleme...
7
8
9
10
11
12
13
14
15
16
17
18
 * This program is free software: you can
 * redistribute it and/or modify it under the terms of the GNU General Public License as published
 * by the Free Software Foundation, either version 3 of the License, or (at your option) any later
 * version. This program is distributed in the hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 * PURPOSE. See the GNU General Public License for more details. You should have received a copy of
 * the GNU General Public License along with this program. If not, see
 * <http://www.gnu.org/licenses/>.
 */

package eu.omp.irap.vespa.epntapclient;

5d3c344e   Nathanael Jourdane   Use Java logging ...
19
20
import java.util.logging.Logger;

1353e182   Nathanael Jourdane   Add minimal eleme...
21
22
23
import javax.swing.JFrame;
import javax.swing.SwingUtilities;

7dc89332   Nathanael Jourdane   remove TODOs, use...
24
25
import com.google.gson.Gson;

5672c106   Nathanael Jourdane   Fix Sonar issues.
26
27
import eu.omp.irap.vespa.epntapclient.gui.mainpanel.MainPanelCtrl;
import eu.omp.irap.vespa.epntapclient.gui.mainpanel.MainPanelView;
1353e182   Nathanael Jourdane   Add minimal eleme...
28
29
30

/**
 * Simple class to have a main function to launch the EPNTap client.
1e543ea0   Nathanael Jourdane   Code clean-up
31
 *
1353e182   Nathanael Jourdane   Add minimal eleme...
32
33
34
 * @author N. Jourdane
 */
public class EpnTapMainApp {
aa2a59ba   Nathanael Jourdane   [coding style] 2 ...
35

5d3c344e   Nathanael Jourdane   Use Java logging ...
36
	/** The logger for the class EpnTapMainApp. */
fd93317f   Nathanael Jourdane   Solve Sonar/Eclip...
37
	private static final Logger LOGGER = Logger.getLogger(EpnTapMainApp.class.getName());
7706bfa4   Nathanael Jourdane   Use log4j as logg...
38

eda63a5c   Nathanael Jourdane   Add Javadoc.
39
	/** Error message when the user put a wrong command. */
6dd0d332   Nathanael Jourdane   The controller do...
40
41
	private static final String WRONG_COMMAND = "Usage: EpnTapMainApp";

aa2a59ba   Nathanael Jourdane   [coding style] 2 ...
42

a7aff3e3   Nathanael Jourdane   Fix Sonar issues
43
44
45
46
	/** Constructor to hide the implicit public one. */
	private EpnTapMainApp() {
	}

1353e182   Nathanael Jourdane   Add minimal eleme...
47
48
	/**
	 * Main function to start the application as standalone.
1e543ea0   Nathanael Jourdane   Code clean-up
49
	 *
1353e182   Nathanael Jourdane   Add minimal eleme...
50
51
	 * @param args The program arguments (not used).
	 */
42819b99   Nathanael Jourdane   Make EpnTAPClient...
52
	public static void main(final String[] args) {
fd93317f   Nathanael Jourdane   Solve Sonar/Eclip...
53
		EpnTapMainApp.LOGGER.info("Lauching EPNTAP app with arguments: " + new Gson().toJson(args));
6dd0d332   Nathanael Jourdane   The controller do...
54
55
56
57
58
		if (args.length != 0) {
			System.console().writer().println(EpnTapMainApp.WRONG_COMMAND);
			return;
		}

0d36b4b0   Nathanael Jourdane   Use RequestPanelC...
59
		MainPanelCtrl guiCtrl = new MainPanelCtrl();
eae7b5f9   Nathanael Jourdane   bugfix #1
60
61
		guiCtrl.readServices();
		SwingUtilities.invokeLater(EpnTapMainApp.run(guiCtrl.getView(), "EPN-TAP client"));
6dd0d332   Nathanael Jourdane   The controller do...
62
63
	}

eda63a5c   Nathanael Jourdane   Add Javadoc.
64
65
66
67
68
69
70
	/**
	 * Creates runnable used to run the application GUI.
	 * 
	 * @param voTableView The VOTable main view, created by the controller.
	 * @param title The title of the application window.
	 * @return The runnable.
	 */
4a9845fd   Nathanael Jourdane   Add controllers f...
71
	private static Runnable run(final MainPanelView voTableView, final String title) {
6dd0d332   Nathanael Jourdane   The controller do...
72
		return new Runnable() {
aa2a59ba   Nathanael Jourdane   [coding style] 2 ...
73

42819b99   Nathanael Jourdane   Make EpnTAPClient...
74
75
			@Override
			public void run() {
6dd0d332   Nathanael Jourdane   The controller do...
76
				JFrame frame = new JFrame(title);
42819b99   Nathanael Jourdane   Make EpnTAPClient...
77
				frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
6dd0d332   Nathanael Jourdane   The controller do...
78
				frame.setContentPane(voTableView);
42819b99   Nathanael Jourdane   Make EpnTAPClient...
79
				frame.setVisible(true);
3bb7f0aa   Nathanael Jourdane   Improve GUI
80
				frame.pack();
42819b99   Nathanael Jourdane   Make EpnTAPClient...
81
82
				frame.setLocationRelativeTo(null);
			}
6dd0d332   Nathanael Jourdane   The controller do...
83
		};
1353e182   Nathanael Jourdane   Add minimal eleme...
84
	}
6dd0d332   Nathanael Jourdane   The controller do...
85

1353e182   Nathanael Jourdane   Add minimal eleme...
86
}