summaryrefslogtreecommitdiffstats
path: root/io/PresentFile.java
blob: 3b959537e2701228e9c17c56b851af91a129bbad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package scruf.io;

import java.io.*;

/**
 * Contains information about the present file that
 * is being parsed by the parsers. 
 * 
 */
public class PresentFile {
    public static String name;
    public static String footer;
    public static String backButton;
    public static File file;
}