Package org.qdl_lang.statements
Class SwitchStatement
- java.lang.Object
-
- org.qdl_lang.statements.SwitchStatement
-
- All Implemented Interfaces:
Serializable,Statement
public class SwitchStatement extends Object implements Statement
Created by Jeff Gaynor
on 1/17/20 at 3:42 PM- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SwitchStatement()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QDLValueevaluate(State state)List<ConditionalStatement>getArguments()List<String>getSourceCode()TokenPositiongetTokenPosition()booleanhasTokenPosition()voidsetArguments(List<ConditionalStatement> arguments)voidsetSourceCode(List<String> sourceCode)voidsetTokenPosition(TokenPosition tokenPosition)Set the location of this token from the parser.
-
-
-
Method Detail
-
setTokenPosition
public void setTokenPosition(TokenPosition tokenPosition)
Description copied from interface:StatementSet the location of this token from the parser. This is used for error notifications later.- Specified by:
setTokenPositionin interfaceStatement
-
getTokenPosition
public TokenPosition getTokenPosition()
- Specified by:
getTokenPositionin interfaceStatement
-
hasTokenPosition
public boolean hasTokenPosition()
- Specified by:
hasTokenPositionin interfaceStatement
-
getArguments
public List<ConditionalStatement> getArguments()
-
setArguments
public void setArguments(List<ConditionalStatement> arguments)
-
getSourceCode
public List<String> getSourceCode()
- Specified by:
getSourceCodein interfaceStatement
-
setSourceCode
public void setSourceCode(List<String> sourceCode)
- Specified by:
setSourceCodein interfaceStatement
-
-