01: /**************************************************************************/
02: /* NICE Testsuite */
03: /* A testsuite for the Nice programming language */
04: /* (c) Alex Greif 2002 */
05: /* */
06: /* This program is free software; you can redistribute it and/or modify */
07: /* it under the terms of the GNU General Public License as published by */
08: /* the Free Software Foundation; either version 2 of the License, or */
09: /* (at your option) any later version. */
10: /* */
11: /**************************************************************************/package nice.tools.testsuite;
12:
13: import java.io.*;
14: import java.util.*;
15:
16: /**
17: * TODO
18: *
19: * @author Alex Greif <a href="mailto:alex.greif@web.de">alex.greif@web.de</a>
20: * @version $Id: GlobalSourceFile.java,v 1.7 2003/02/19 18:30:28 bonniot Exp $
21: */
22: public class GlobalSourceFile extends NiceSourceFile {
23:
24: final static String PACKAGE_GLOBAL = "global";
25:
26: /**
27: * TODO
28: *
29: */
30: public GlobalSourceFile() {
31: setPackage(PACKAGE_GLOBAL);
32: }
33:
34: /**
35: * TODO
36: *
37: * @param line TODO
38: */
39: public void consumeLine(String line) {
40: addToTopLevel(line);
41: }
42:
43: }
44:
45: // Local Variables:
46: // tab-width: 2
47: // End:
|