Class InvokeProcedure
- java.lang.Object
-
- net.sourceforge.plantuml.tim.stdlib.InvokeProcedure
-
-
Constructor Summary
Constructors Constructor Description InvokeProcedure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanCover(int nbArg, Set<String> namedArgument)voidexecuteProcedure(TContext context, TMemory memory, LineLocation location, String s)voidexecuteProcedureInternal(TContext context, TMemory memory, List<TValue> args, Map<String,TValue> named)TValueexecuteReturnFunction(TContext context, TMemory memory, LineLocation location, List<TValue> values, Map<String,TValue> named)TFunctionTypegetFunctionType()TFunctionSignaturegetSignature()booleanisUnquoted()
-
-
-
Method Detail
-
getSignature
public TFunctionSignature getSignature()
- Specified by:
getSignaturein interfaceTFunction
-
getFunctionType
public TFunctionType getFunctionType()
- Specified by:
getFunctionTypein interfaceTFunction
-
executeProcedure
public void executeProcedure(TContext context, TMemory memory, LineLocation location, String s) throws EaterException, EaterExceptionLocated
- Specified by:
executeProcedurein interfaceTFunction- Throws:
EaterExceptionEaterExceptionLocated
-
executeProcedureInternal
public void executeProcedureInternal(TContext context, TMemory memory, List<TValue> args, Map<String,TValue> named) throws EaterException, EaterExceptionLocated
- Specified by:
executeProcedureInternalin interfaceTFunction- Throws:
EaterExceptionEaterExceptionLocated
-
executeReturnFunction
public TValue executeReturnFunction(TContext context, TMemory memory, LineLocation location, List<TValue> values, Map<String,TValue> named)
- Specified by:
executeReturnFunctionin interfaceTFunction
-
isUnquoted
public boolean isUnquoted()
- Specified by:
isUnquotedin interfaceTFunction
-
-