Child: [r25] (diff)

Download this file

param.java    31 lines (26 with data), 855 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
/**
* SPDXVersion: SPDX-1.1
* Creator: Person: Nuno Brito (nuno.brito@triplecheck.de)
* Creator: Organization: TripleCheck (http://triplecheck.de)
* Created: 2013-12-11T00:00:00Z
* LicenseName: NOASSERTION
* FileName: params.java
* FileType: SOURCE
* FileCopyrightText: <text> Copyright (c) 2013 Nuno Brito, TripleCheck </text>
* FileComment: <text> Common place to store parameters used across scripts.
* The lower case on class files is mostly used for classes that are static,
* not meant to be instantiated.</text>
*/
package main;
/**
*
* @author Nuno Brito, 11th of December 2013 in Darsmtadt, Germany
*/
public class param {
public static final String
filter = "filter",
withLicense = "withlicense",
noLicense = "nolicense",
spdx = "spdx",
file = "file";
}