Interface LinkOfficeNode
-
- All Superinterfaces:
Node
- All Known Subinterfaces:
ManagingOfficeNode
,OfficeNode
- All Known Implementing Classes:
ManagingOfficeNodeImpl
,OfficeNodeImpl
public interface LinkOfficeNode extends Node
LinkOfficeNode
that can be linked to anotherLinkOfficeNode
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LinkOfficeNode
getLinkedOfficeNode()
Obtains theLinkOfficeNode
linked to thisLinkOfficeNode
.boolean
linkOfficeNode(LinkOfficeNode node)
Links the inputLinkOfficeNode
to thisLinkOfficeNode
.-
Methods inherited from interface net.officefloor.compile.internal.structure.Node
getChildNodes, getLocation, getNodeName, getNodeType, getParentNode, getQualifiedName, getQualifiedName, isInitialised
-
-
-
-
Method Detail
-
linkOfficeNode
boolean linkOfficeNode(LinkOfficeNode node)
Links the inputLinkOfficeNode
to thisLinkOfficeNode
.- Parameters:
node
-LinkOfficeNode
to link to thisLinkOfficeNode
.- Returns:
true
if linked.
-
getLinkedOfficeNode
LinkOfficeNode getLinkedOfficeNode()
Obtains theLinkOfficeNode
linked to thisLinkOfficeNode
.- Returns:
LinkOfficeNode
linked to thisLinkOfficeNode
.
-
-