Interface ManagedFunctionRegistry
-
- All Known Subinterfaces:
SectionNode
- All Known Implementing Classes:
SectionNodeImpl
public interface ManagedFunctionRegistry
Registry of theManagedFunctionNode
instances.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedFunctionNode
addManagedFunctionNode(java.lang.String functionName, java.lang.String functionTypeName, FunctionNamespaceNode functionNamespaceNode)
Adds an initialisedManagedFunctionNode
to the registry.
-
-
-
Method Detail
-
addManagedFunctionNode
ManagedFunctionNode addManagedFunctionNode(java.lang.String functionName, java.lang.String functionTypeName, FunctionNamespaceNode functionNamespaceNode)
Adds an initialised
ManagedFunctionNode
to the registry.Should an
ManagedFunctionNode
already be added by the name, then an issue is reported to theCompilerIssue
.- Parameters:
functionName
- Name of theManagedFunctionNode
.functionTypeName
- Type name of theManagedFunction
within theManagedFunctionSource
.functionNamespaceNode
- ParentFunctionNamespaceNode
.- Returns:
- Initialised
ManagedFunctionNode
by the name.
-
-