Child: [r25] (diff)

Download this file

Process.java    34 lines (29 with data), 657 Bytes

 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
/*
* SPDXVersion: SPDX-1.1
*
* Creator: Person: Nuno Brito (nuno.brito@triplecheck.de)
*
* Creator: Organization: TripleCheck (contact@triplecheck.de)
*
* Created: 2013-09-15T00:00:00Z
*
* LicenseName: NOASSERTION
*
* FileName: Process.java
*
* FileType: SOURCE
*
* FileCopyrightText: <text> Copyright 2013 Nuno Brito, TripleCheck </text>
*
* FileComment: <text> Helps to know which part of the SPDX document is
* currently being processed </text>
*/
package definitions;
public class Process {
public static final int
nothing = 0,
header = 1,
packageData = 2,
files = 3,
review = 4;
}