 | ProcedureInfo Constructor |
Constructs a ProcedureInfo object.
Namespace:
de.unika.ipd.grGen.libGr
Assembly:
libGr (in libGr.dll) Version: GrGen.NET 7.2
Syntaxpublic ProcedureInfo(
string name,
string package,
string packagePrefixedName,
bool isExternal,
string[] inputNames,
GrGenType[] inputs,
GrGenType[] outputs
)
Parameters
- name
- Type: SystemString
The name the procedure 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 procedure 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. - outputs
- Type: de.unika.ipd.grGen.libGrGrGenType
The types of the output parameters.
See Also