Interface ConjugateNodeFactory
-
- All Superinterfaces:
GraphEntityFactory<ConjugateNode>
,ManagedIdEntityFactory<ConjugateNode>
- All Known Implementing Classes:
ConjugateNodeFactoryImpl
public interface ConjugateNodeFactory extends GraphEntityFactory<ConjugateNode>
Factory interface for creating conjugate node instances- Author:
- markr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConjugateNode
createNew(Link originalLink)
Create a new conjugate node (without registering)ConjugateNode
registerNew(Link originalLink)
Create and register new conjugate node-
Methods inherited from interface org.goplanit.utils.id.ManagedIdEntityFactory
createUniqueDeepCopyOf, createUniqueShallowCopyOf, getIdGroupingToken, setIdGroupingToken
-
-
-
-
Method Detail
-
createNew
ConjugateNode createNew(Link originalLink)
Create a new conjugate node (without registering)- Parameters:
originalLink
- this node is the conjugate of- Returns:
- created conjugate node
-
registerNew
ConjugateNode registerNew(Link originalLink)
Create and register new conjugate node- Parameters:
originalLink
- this node is the conjugate of- Returns:
- new node created
-
-