Class ExecutionStrategyNodeImpl
- java.lang.Object
-
- net.officefloor.compile.impl.structure.ExecutionStrategyNodeImpl
-
- All Implemented Interfaces:
ExecutionStrategyNode
,LinkExecutionStrategyNode
,Node
,OfficeFloorExecutionStrategy
public class ExecutionStrategyNodeImpl extends java.lang.Object implements ExecutionStrategyNode
ExecutionStrategyNode
implementation.- Author:
- Daniel Sagenschneider
-
-
Field Summary
-
Fields inherited from interface net.officefloor.compile.internal.structure.ExecutionStrategyNode
TYPE
-
-
Constructor Summary
Constructors Constructor Description ExecutionStrategyNodeImpl(java.lang.String executionStrategyName, ExecutiveNode executive, NodeContext context)
Instantiate.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Node[]
getChildNodes()
Obtains the childNode
instances.LinkExecutionStrategyNode
getLinkedExecutionStrategyNode()
Obtains theLinkExecutionStrategyNode
linked to thisLinkExecutionStrategyNode
.java.lang.String
getLocation()
Obtains the location of theNode
.java.lang.String
getNodeName()
Obtains the name of theNode
.java.lang.String
getNodeType()
Obtains theNode
type.java.lang.String
getOfficeFloorExecutionStratgyName()
Obtains the name of thisOfficeFloorExecutionStrategy
.Node
getParentNode()
void
initialise()
Initialises theExecutionStrategyNode
.boolean
isInitialised()
Indicates if theNode
has been initialised.boolean
linkExecutionStrategyNode(LinkExecutionStrategyNode node)
Links the inputLinkExecutionStrategyNode
to thisLinkExecutionStrategyNode
.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.officefloor.compile.internal.structure.Node
getQualifiedName, getQualifiedName
-
-
-
-
Constructor Detail
-
ExecutionStrategyNodeImpl
public ExecutionStrategyNodeImpl(java.lang.String executionStrategyName, ExecutiveNode executive, NodeContext context)
Instantiate.- Parameters:
executionStrategyName
-ExecutionStrategy
name.executive
- ParentExecutiveNode
.context
-NodeContext
.
-
-
Method Detail
-
getNodeName
public java.lang.String getNodeName()
Description copied from interface:Node
Obtains the name of theNode
.- Specified by:
getNodeName
in interfaceNode
- Returns:
- Name of the
Node
.
-
getNodeType
public java.lang.String getNodeType()
Description copied from interface:Node
Obtains theNode
type.- Specified by:
getNodeType
in interfaceNode
- Returns:
Node
type.
-
getLocation
public java.lang.String getLocation()
Description copied from interface:Node
Obtains the location of theNode
.- Specified by:
getLocation
in interfaceNode
- Returns:
- Location of the
Node
. May benull
ifNode
does not support a location.
-
getParentNode
public Node getParentNode()
Description copied from interface:Node
- Specified by:
getParentNode
in interfaceNode
- Returns:
Node
containing thisNode
.
-
isInitialised
public boolean isInitialised()
Description copied from interface:Node
Indicates if theNode
has been initialised.Node
instances should only be initialised once. Initialising theNode
twice is an issue.- Specified by:
isInitialised
in interfaceNode
- Returns:
true
if initialised.
-
getChildNodes
public Node[] getChildNodes()
Description copied from interface:Node
Obtains the childNode
instances.- Specified by:
getChildNodes
in interfaceNode
- Returns:
- Child
Node
instances.
-
getOfficeFloorExecutionStratgyName
public java.lang.String getOfficeFloorExecutionStratgyName()
Description copied from interface:OfficeFloorExecutionStrategy
Obtains the name of thisOfficeFloorExecutionStrategy
.- Specified by:
getOfficeFloorExecutionStratgyName
in interfaceOfficeFloorExecutionStrategy
- Returns:
- Name of this
OfficeFloorExecutionStrategy
.
-
initialise
public void initialise()
Description copied from interface:ExecutionStrategyNode
Initialises theExecutionStrategyNode
.- Specified by:
initialise
in interfaceExecutionStrategyNode
-
linkExecutionStrategyNode
public boolean linkExecutionStrategyNode(LinkExecutionStrategyNode node)
Description copied from interface:LinkExecutionStrategyNode
Links the inputLinkExecutionStrategyNode
to thisLinkExecutionStrategyNode
.- Specified by:
linkExecutionStrategyNode
in interfaceLinkExecutionStrategyNode
- Parameters:
node
-LinkExecutionStrategyNode
to link to thisLinkExecutionStrategyNode
.- Returns:
true
if linked.
-
getLinkedExecutionStrategyNode
public LinkExecutionStrategyNode getLinkedExecutionStrategyNode()
Description copied from interface:LinkExecutionStrategyNode
Obtains theLinkExecutionStrategyNode
linked to thisLinkExecutionStrategyNode
.- Specified by:
getLinkedExecutionStrategyNode
in interfaceLinkExecutionStrategyNode
- Returns:
LinkExecutionStrategyNode
linked to thisLinkExecutionStrategyNode
.
-
-