Class PreInterpretationBehavior
- java.lang.Object
-
- org.palladiosimulator.simulizar.interpreter.preinterpretation.PreInterpretationBehavior
-
public abstract class PreInterpretationBehavior extends Object
Behavior for a PreInterpretationBehaviorContainer.
-
-
Constructor Summary
Constructors Constructor Description PreInterpretationBehavior(InterpreterResult result)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InterpreterResult
execute(InterpreterDefaultContext context)
Implementations should override this and execute intern behavior.InterpreterResult
getResult()
void
setResult(InterpreterResult result)
-
-
-
Constructor Detail
-
PreInterpretationBehavior
public PreInterpretationBehavior(InterpreterResult result)
-
-
Method Detail
-
execute
public InterpreterResult execute(InterpreterDefaultContext context)
Implementations should override this and execute intern behavior. After that call super.execute(); to return the InterpreterResult.- Returns:
- the InterpreterResult
-
getResult
public InterpreterResult getResult()
-
setResult
public void setResult(InterpreterResult result)
-
-