Click or drag to resize

LGSPTransientObjectApplyFunctionMethod Method

Executes the function method given by its name. Throws an exception if the method does not exists or the parameters are of wrong types.

Namespace:  de.unika.ipd.grGen.lgsp
Assembly:  lgspBackend (in lgspBackend.dll) Version: GrGen.NET 7.2
Syntax
C#
public abstract Object ApplyFunctionMethod(
	IActionExecutionEnvironment actionEnv,
	IGraph graph,
	string name,
	Object[] arguments
)

Parameters

actionEnv
Type: de.unika.ipd.grGen.libGrIActionExecutionEnvironment
The current action execution environment.
graph
Type: de.unika.ipd.grGen.libGrIGraph
The current graph.
name
Type: SystemString
The name of the function method to apply.
arguments
Type: SystemObject
An array with the arguments to the method.

Return Value

Type: Object
The return value of function application.

Implements

ICallableApplyFunctionMethod(IActionExecutionEnvironment, IGraph, String, Object)
See Also