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