Interface LinkExecutionStrategyNode
-
- All Superinterfaces:
Node
- All Known Subinterfaces:
ExecutionStrategyNode
,ManagedObjectExecutionStrategyNode
- All Known Implementing Classes:
ExecutionStrategyNodeImpl
,ManagedObjectExecutionStrategyNodeImpl
public interface LinkExecutionStrategyNode extends Node
LinkExecutionStrategyNode
that can be linked to anotherLinkExecutionStrategyNode
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LinkExecutionStrategyNode
getLinkedExecutionStrategyNode()
Obtains theLinkExecutionStrategyNode
linked to thisLinkExecutionStrategyNode
.boolean
linkExecutionStrategyNode(LinkExecutionStrategyNode node)
Links the inputLinkExecutionStrategyNode
to thisLinkExecutionStrategyNode
.-
Methods inherited from interface net.officefloor.compile.internal.structure.Node
getChildNodes, getLocation, getNodeName, getNodeType, getParentNode, getQualifiedName, getQualifiedName, isInitialised
-
-
-
-
Method Detail
-
linkExecutionStrategyNode
boolean linkExecutionStrategyNode(LinkExecutionStrategyNode node)
Links the inputLinkExecutionStrategyNode
to thisLinkExecutionStrategyNode
.- Parameters:
node
-LinkExecutionStrategyNode
to link to thisLinkExecutionStrategyNode
.- Returns:
true
if linked.
-
getLinkedExecutionStrategyNode
LinkExecutionStrategyNode getLinkedExecutionStrategyNode()
Obtains theLinkExecutionStrategyNode
linked to thisLinkExecutionStrategyNode
.- Returns:
LinkExecutionStrategyNode
linked to thisLinkExecutionStrategyNode
.
-
-