Child: [r22] (diff)

Download this file

Page.java    36 lines (29 with data), 849 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
34
35
/**
* SPDXVersion: SPDX-1.1
* Creator: Person: Nuno Brito (nuno.brito@triplecheck.de)
* Creator: Organization: TripleCheck (http://triplecheck.de)
* Created: 2013-12-12T00:00:00Z
* FileName: Page.java
* FileType: SOURCE
* FileCopyrightText: <text> Copyright (c) 2013 Nuno Brito, TripleCheck </text>
* FileComment: <text> Defines a web page that is displayed to the end-user
* </text>
*/
package www;
import java.io.File;
/**
*
* @author Nuno Brito, 12th of December 2013 in Darsmtadt, Germany
*/
public class Page {
private File
sourceFile, // has a file been used as source for this document
sourceFolder;
/**
* Creates a page containing the HTML page
* @return the HTML code to be displayed to the end user
*/
public String getOutput(){
return "";
}
}