01: package murlen.util.fscript;
02:
03: /**
04: * <p>FSParserExtension - an extension which needs a reference to the parser
05: * - USE WITH CAUTION</p>
06: * <p>
07: * <I>Copyright (C) 2002</I></p>
08: * <p>
09: * This library is free software; you can redistribute it and/or
10: * modify it under the terms of the GNU Library General Public
11: * License as published by the Free Software Foundation; either
12: * version 2 of the License, or (at your option) any later version.</p>
13: * <p>
14: * This library is distributed in the hope that it will be useful,
15: * but WITHOUT ANY WARRANTY; without even the implied warranty of
16: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17: * Library General Public License for more details.</p>
18: *
19: * <p>You should have received a copy of the GNU Library General Public
20: * License along with this library; if not, write to the Free
21: * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA </p>
22: *
23: * @author Joachim Van der Auwera
24: * @version
25: */
26: public interface FSParserExtension extends FSExtension {
27:
28: /**
29: * set the parser which is used to parse the executed Fscript code
30: * @param parser
31: */
32: public void setParser(Parser parser);
33:
34: }
|