Interface ContainingDirectedGraphNode
-
- All Superinterfaces:
AttributeMapOwner
,java.lang.Cloneable
,java.lang.Comparable<DirectedGraphNode>
,DirectedGraphElement
,DirectedGraphNode
,Expandable
public interface ContainingDirectedGraphNode extends DirectedGraphNode, Expandable
Interface to represent a directed graph node that contain other elements.- Author:
- Remco Dijkman
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addChild(ContainableDirectedGraphElement child)
java.util.Set<? extends ContainableDirectedGraphElement>
getChildren()
-
Methods inherited from interface org.processmining.models.graphbased.AttributeMapOwner
getAttributeMap
-
Methods inherited from interface org.processmining.models.graphbased.directed.DirectedGraphElement
equals, getGraph, getLabel, hashCode
-
Methods inherited from interface org.processmining.models.graphbased.directed.DirectedGraphNode
getId
-
Methods inherited from interface org.processmining.models.graphbased.Expandable
getCollapsedSize
-
-
-
-
Method Detail
-
getChildren
java.util.Set<? extends ContainableDirectedGraphElement> getChildren()
-
addChild
void addChild(ContainableDirectedGraphElement child)
-
-