Child: [r22] (diff)

Download this file

settings.java    29 lines (23 with data), 684 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
/**
* SPDXVersion: SPDX-1.1
* Creator: Person: Nuno Brito (nuno.brito@triplecheck.de)
* Creator: Organization: TripleCheck (http://triplecheck.de)
* Created: 2013-12-10T00:00:00Z
* LicenseName: NOASSERTION
* FileName: settings.java
* FileType: SOURCE
* FileCopyrightText: <text> Copyright (c) 2013 Nuno Brito, TripleCheck </text>
* FileComment: <text> This files holds basic settings used during the startup
* routine.</text>
*/
package main;
import script.Plugin;
/**
*
* @author Nuno Brito, 10th of December 2013 in Darsmtadt, Germany
*/
public class settings extends Plugin{
public void main(){
System.out.println("Hello World!");
}
}