Blame view

src/main/java/eu/omp/irap/vespa/epntapclient/view/Event.java 1.35 KB
5af53be7   Nathanael Jourdane   Make the applicat...
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
 *
5af53be7   Nathanael Jourdane   Make the applicat...
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 * 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.view;

/**
 * @author N. Jourdane
 */
public enum Event {
a227a22d   Nathanael Jourdane   Add comments.
23
	/** When a service is selected on the service panel. */
4268557f   Nathanael Jourdane   Fix some Sonar is...
24
	SERVICE_SELECTED,
a227a22d   Nathanael Jourdane   Add comments.
25
	/** When the `Send query` button is clicked. */
4268557f   Nathanael Jourdane   Fix some Sonar is...
26
	SEND_BUTTON_CLICKED,
a227a22d   Nathanael Jourdane   Add comments.
27
	/** When a parameter is removed on the parameter panel. */
4268557f   Nathanael Jourdane   Fix some Sonar is...
28
	PARAMETER_REMOVED,
a227a22d   Nathanael Jourdane   Add comments.
29
	/** When a parameter is updated to a valid value on the parameter panel. */
4268557f   Nathanael Jourdane   Fix some Sonar is...
30
	PARAMETER_CHANGED;
5af53be7   Nathanael Jourdane   Make the applicat...
31
}