Project

General

Profile

Download (893 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2009 EDIT
3
* European Distributed Institute of Taxonomy 
4
* http://www.e-taxonomy.eu
5
* 
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.cdm.print.out.mediawiki;
10

    
11
import java.io.File;
12

    
13

    
14

    
15
/**
16
 * @author n.paule
17
 \* @since Sep 19, 2013
18
 *
19
 */
20
public class WikiFile {
21

    
22
	protected File file;
23
	protected String fileName;
24
	protected String text;
25
	protected String comment;
26

    
27
	/**
28
	 * @param file
29
	 *            the file
30
	 */
31
	public WikiFile(File file) {
32
		this.file = file;
33
		this.fileName = file.getName();
34
		this.text = "";
35
	}
36

    
37
	public WikiFile(File file, String fileName, String text, String comment) {
38
		this.file = file;
39
		this.fileName = fileName;
40
		this.text = text;
41
		this.comment = comment;
42
	}
43
	
44
}
(4-4/5)