Interface LinkFlowNode
-
- All Superinterfaces:
Node
- All Known Subinterfaces:
EscalationNode
,FunctionFlowNode
,ManagedFunctionNode
,ManagedObjectFlowNode
,OfficeInputNode
,OfficeOutputNode
,OfficeStartNode
,SectionInputNode
,SectionOutputNode
- All Known Implementing Classes:
EscalationNodeImpl
,FunctionFlowNodeImpl
,ManagedFunctionNodeImpl
,ManagedObjectFlowNodeImpl
,OfficeInputNodeImpl
,OfficeOutputNodeImpl
,OfficeStartNodeImpl
,SectionInputNodeImpl
,SectionOutputNodeImpl
public interface LinkFlowNode extends Node
LinkFlowNode
that can be linked to anotherLinkFlowNode
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LinkFlowNode
getLinkedFlowNode()
Obtains theLinkFlowNode
linked to thisLinkFlowNode
.boolean
linkFlowNode(LinkFlowNode node)
Links the inputLinkFlowNode
to thisLinkFlowNode
.-
Methods inherited from interface net.officefloor.compile.internal.structure.Node
getChildNodes, getLocation, getNodeName, getNodeType, getParentNode, getQualifiedName, getQualifiedName, isInitialised
-
-
-
-
Method Detail
-
linkFlowNode
boolean linkFlowNode(LinkFlowNode node)
Links the inputLinkFlowNode
to thisLinkFlowNode
.- Parameters:
node
-LinkFlowNode
to link to thisLinkFlowNode
.- Returns:
true
if linked.
-
getLinkedFlowNode
LinkFlowNode getLinkedFlowNode()
Obtains theLinkFlowNode
linked to thisLinkFlowNode
.- Returns:
LinkFlowNode
linked to thisLinkFlowNode
.
-
-