 | FunctionInfo Constructor |
Constructs a FunctionInfo object.
Namespace:
de.unika.ipd.grGen.libGr
Assembly:
libGr (in libGr.dll) Version: GrGen.NET 7.2
Syntaxpublic FunctionInfo(
string name,
string package,
string packagePrefixedName,
bool isExternal,
string[] inputNames,
GrGenType[] inputs,
GrGenType output
)
Parameters
- name
- Type: SystemString
The name the function was defined with. - package
- Type: SystemString
null if this is a global pattern graph, otherwise the package the pattern graph is contained in. - packagePrefixedName
- Type: SystemString
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
- Type: SystemBoolean
Tells whether the function is an externally defined one or an internal one. - inputNames
- Type: SystemString
The names of the input parameters. - inputs
- Type: de.unika.ipd.grGen.libGrGrGenType
The types of the input parameters. - output
- Type: de.unika.ipd.grGen.libGrGrGenType
The type of the output parameter.
See Also