Child: [r25] (diff)

Download this file

Date.java    32 lines (24 with data), 771 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
/*
* SPDXVersion: SPDX-1.1
* Creator: Person: Nuno Brito (nuno.brito@triplecheck.de)
* Creator: Organization: TripleCheck (contact@triplecheck.de)
* Date: 2013-08-29T00:00:00Z
* LicenseName: NOASSERTION
* FileName: Date.java
* FileType: SOURCE
* FileCopyrightText: <text> Copyright 2013 Nuno Brito, TripleCheck </text>
* FileComment: <text>Class to manipulate the SPDX "Date" field correctly
* </text>
*/
package old;
public class Date {
// this string needs to output date in the ISO 8601 standard
String output; // for e.g. 2013-08-29T00:00:00Z
int
YYYY, // year
MM, // month
DD, // day
hh, // hour
mm, // minutes
ss; // seconds
}