Click or drag to resize

FunctionInfo Constructor

Constructs a FunctionInfo object.

Namespace: de.unika.ipd.grGen.libGr
Assembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntax
C#
public FunctionInfo(
	string name,
	string package,
	string packagePrefixedName,
	bool isExternal,
	string[] inputNames,
	GrGenType[] inputs,
	GrGenType output
)

Parameters

name  String
The name the function was defined with.
package  String
null if this is a global pattern graph, otherwise the package the pattern graph is contained in.
packagePrefixedName  String
The name of the pattern graph in case of a global type, the name of the pattern graph is prefixed by the name of the package otherwise (package "::" name).
isExternal  Boolean
Tells whether the function is an externally defined one or an internal one.
inputNames  String
The names of the input parameters.
inputs  GrGenType
The types of the input parameters.
output  GrGenType
The type of the output parameter.
See Also