Package com.singularsys.jeptests.system
Class ModifiedParserTest.SuffixArrayAccessShuntingYardGrammarParserFactory
- java.lang.Object
-
- com.singularsys.jeptests.system.ModifiedParserTest.SuffixArrayAccessShuntingYardGrammarParserFactory
-
- All Implemented Interfaces:
GrammarParserFactory,JepComponent,java.io.Serializable
- Enclosing class:
- ModifiedParserTest
public static class ModifiedParserTest.SuffixArrayAccessShuntingYardGrammarParserFactory extends java.lang.Object implements GrammarParserFactory
Factory to create SuffixArrayAccessShuntingYard- Author:
- richard
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SuffixArrayAccessShuntingYardGrammarParserFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JepComponentgetLightWeightInstance()Gets a light-weight instance suitable for using in multiple threads.voidinit(Jep jep)Initialize the component.GrammarParsernewInstance(ConfigurableParser cp)Create a new ShuntingYard instance.
-
-
-
Method Detail
-
newInstance
public GrammarParser newInstance(ConfigurableParser cp)
Create a new ShuntingYard instance.- Specified by:
newInstancein interfaceGrammarParserFactory
-
init
public void init(Jep jep)
Description copied from interface:JepComponentInitialize the component. This methods is called whenever a component is added to Jep. Hence it allows components to keep track of the other components they may rely on.- Specified by:
initin interfaceJepComponent- Parameters:
jep- the current Jep instance
-
getLightWeightInstance
public JepComponent getLightWeightInstance()
Description copied from interface:JepComponentGets a light-weight instance suitable for using in multiple threads.- Specified by:
getLightWeightInstancein interfaceJepComponent- Returns:
- either an new instance, null or 'this'.
-
-