01: package fri.patterns.interpreter.parsergenerator.lexer;
02:
03: /**
04: * StrategyFactoryMethod creates a new Strategy object
05: * for both ConsumerAlternatives and LexerImpl.
06: *
07: * Created on 27.09.2005
08: * @author Fritz Ritzberger
09: */
10: public interface StrategyFactoryMethod {
11: /** Returns a new Strategy object for competing Consumers. */
12: public Strategy newStrategy();
13:
14: }
|