Interface LinkStartupAfterNode
-
- All Superinterfaces:
Node
public interface LinkStartupAfterNode extends Node
LinkStartupAfterNode
that can be linked to anotherLinkStartupAfterNode
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LinkStartupAfterNode[]
getLinkedStartupAfterNodes()
Obtains theLinkStartupAfterNode
instances linked to thisLinkStartupAfterNode
.boolean
linkStartupAfterNode(LinkStartupAfterNode node)
Links the inputLinkStartupAfterNode
to thisLinkStartupAfterNode
.-
Methods inherited from interface net.officefloor.compile.internal.structure.Node
getChildNodes, getLocation, getNodeName, getNodeType, getParentNode, getQualifiedName, getQualifiedName, isInitialised
-
-
-
-
Method Detail
-
linkStartupAfterNode
boolean linkStartupAfterNode(LinkStartupAfterNode node)
Links the inputLinkStartupAfterNode
to thisLinkStartupAfterNode
.- Parameters:
node
-LinkStartupAfterNode
to link to thisLinkStartupAfterNode
.- Returns:
true
if linked.
-
getLinkedStartupAfterNodes
LinkStartupAfterNode[] getLinkedStartupAfterNodes()
Obtains theLinkStartupAfterNode
instances linked to thisLinkStartupAfterNode
.- Returns:
LinkStartupAfterNode
instances linked to thisLinkStartupAfterNode
.
-
-