Child: [r23] (diff)

Download this file

Actions.java    46 lines (40 with data), 1.1 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
* SPDXVersion: SPDX-1.1
*
* Creator: Person: Nuno Brito (nuno.brito@triplecheck.de)
*
* Creator: Organization: TripleCheck (contact@triplecheck.de)
*
* Created: 2013-10-19T00:00:00Z
*
* LicenseName: NOASSERTION
*
* FileName: Actions.java
*
* FileType: SOURCE
*
* FileCopyrightText: <text> Copyright 2013 Nuno Brito, TripleCheck </text>
*
* FileComment: <text> Keeps in a single location the text strings that
are used writing the actions at the right-side of the GUI</text>
*/
package GUI;
/**
*
* @author Nuno Brito, 18th of October 2013 in Darmstadt, Germany.
*/
public class Actions {
/**
* Rules for adding new strings here.
*
* Order of actions is:
* 1) Type / group
* 2) Action
*
* Example is "personDelete" where "person" is the group and "Delete"
* is the action title
*/
public final static String
personDelete = "Delete person",
addComponentToProduct = "Add to product";
}