Class NewDictionary
- java.lang.Object
-
- org.apache.manifoldcf.scriptengine.NewDictionary
-
- All Implemented Interfaces:
NewOperation
public class NewDictionary extends java.lang.Object implements NewOperation
Class defining the creation of a new dictionary object.
-
-
Constructor Summary
Constructors Constructor Description NewDictionary()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VariableReference
parseAndCreate(ScriptParser sp, TokenStream currentStream)
Parse and execute.void
parseAndSkip(ScriptParser sp, TokenStream currentStream)
Parse and skip.
-
-
-
Method Detail
-
parseAndCreate
public VariableReference parseAndCreate(ScriptParser sp, TokenStream currentStream) throws ScriptException
Parse and execute. Parsing begins right after the "new" keyword and the operation name token.- Specified by:
parseAndCreate
in interfaceNewOperation
- Parameters:
sp
- is the script parser to use to help in the parsing.currentStream
- is the current token stream.- Returns:
- the variable reference that got created. Should never be null.
- Throws:
ScriptException
-
parseAndSkip
public void parseAndSkip(ScriptParser sp, TokenStream currentStream) throws ScriptException
Parse and skip. Parsing begins right after the "new" keyword and the operation name token.- Specified by:
parseAndSkip
in interfaceNewOperation
- Parameters:
sp
- is the script parser to use to help in the parsing.currentStream
- is the current token stream.- Throws:
ScriptException
-
-