Class ManagingOfficeNodeImpl
- java.lang.Object
-
- net.officefloor.compile.impl.structure.ManagingOfficeNodeImpl
-
- All Implemented Interfaces:
LinkOfficeNode
,ManagingOfficeNode
,Node
,ManagingOffice
public class ManagingOfficeNodeImpl extends java.lang.Object implements ManagingOfficeNode
ManagingOfficeNode
implementation.- Author:
- Daniel Sagenschneider
-
-
Field Summary
-
Fields inherited from interface net.officefloor.compile.internal.structure.ManagingOfficeNode
TYPE
-
-
Constructor Summary
Constructors Constructor Description ManagingOfficeNodeImpl(ManagedObjectSourceNode managedObjectSource, NodeContext context)
Initiate.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Node[]
getChildNodes()
Obtains the childNode
instances.LinkOfficeNode
getLinkedOfficeNode()
Obtains theLinkOfficeNode
linked to thisLinkOfficeNode
.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.Node
getParentNode()
void
initialise()
Initialises theManagingOfficeNode
.boolean
isInitialised()
Indicates if theNode
has been initialised.boolean
linkOfficeNode(LinkOfficeNode node)
Links the inputLinkOfficeNode
to thisLinkOfficeNode
.-
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
-
ManagingOfficeNodeImpl
public ManagingOfficeNodeImpl(ManagedObjectSourceNode managedObjectSource, NodeContext context)
Initiate.- Parameters:
managedObjectSource
- ParentManagedObjectSourceNode
.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
.
-
getChildNodes
public Node[] getChildNodes()
Description copied from interface:Node
Obtains the childNode
instances.- Specified by:
getChildNodes
in interfaceNode
- Returns:
- Child
Node
instances.
-
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.
-
initialise
public void initialise()
Description copied from interface:ManagingOfficeNode
Initialises theManagingOfficeNode
.- Specified by:
initialise
in interfaceManagingOfficeNode
-
linkOfficeNode
public boolean linkOfficeNode(LinkOfficeNode node)
Description copied from interface:LinkOfficeNode
Links the inputLinkOfficeNode
to thisLinkOfficeNode
.- Specified by:
linkOfficeNode
in interfaceLinkOfficeNode
- Parameters:
node
-LinkOfficeNode
to link to thisLinkOfficeNode
.- Returns:
true
if linked.
-
getLinkedOfficeNode
public LinkOfficeNode getLinkedOfficeNode()
Description copied from interface:LinkOfficeNode
Obtains theLinkOfficeNode
linked to thisLinkOfficeNode
.- Specified by:
getLinkedOfficeNode
in interfaceLinkOfficeNode
- Returns:
LinkOfficeNode
linked to thisLinkOfficeNode
.
-
-