KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fri > patterns > interpreter > parsergenerator > lexer > StrategyFactoryMethod


1 package fri.patterns.interpreter.parsergenerator.lexer;
2
3 /**
4  * StrategyFactoryMethod creates a new Strategy object
5  * for both ConsumerAlternatives and LexerImpl.
6  *
7  * Created on 27.09.2005
8  * @author Fritz Ritzberger
9  */

10 public interface StrategyFactoryMethod
11 {
12     /** Returns a new Strategy object for competing Consumers. */
13     public Strategy newStrategy();
14     
15 }
16
Popular Tags