Class AbstractDependencyGraph<T extends ISystemModelElement>
java.lang.Object
kieker.tools.trace.analysis.filter.visualization.graph.AbstractGraph<DependencyGraphNode<T>,WeightedBidirectionalDependencyGraphEdge<T>,TraceInformation>
kieker.tools.trace.analysis.filter.visualization.dependencyGraph.AbstractDependencyGraph<T>
- Type Parameters:
T- The type of the nodes' payload
- Direct Known Subclasses:
ComponentAllocationDependencyGraph,ComponentAssemblyDependencyGraph,ContainerDependencyGraph,OperationAllocationDependencyGraph,OperationAssemblyDependencyGraph
@Deprecated public abstract class AbstractDependencyGraph<T extends ISystemModelElement> extends AbstractGraph<DependencyGraphNode<T>,WeightedBidirectionalDependencyGraphEdge<T>,TraceInformation>
Deprecated.
1.15 ported to teetime
Abstract superclass for dependency graphs.
- Since:
- 1.6
-
Nested Class Summary
Nested classes/interfaces inherited from class kieker.tools.trace.analysis.filter.visualization.graph.AbstractGraph
AbstractGraph.IGraphVisitor<V,E> -
Constructor Summary
Constructors Constructor Description AbstractDependencyGraph(T rootEntity)Deprecated.Creates a new dependency graph with the given root entity. -
Method Summary
Modifier and Type Method Description protected voidaddNode(int i, DependencyGraphNode<T> node)Deprecated.Adds a node to this graph.protected DependencyGraphNode<T>getNode(int i)Deprecated.Delivers the node with the given key.java.util.Collection<DependencyGraphNode<T>>getNodes()Deprecated.Returns all nodes contained in this graph.DependencyGraphNode<T>getRootNode()Deprecated.Returns this graph's root node.java.util.Collection<DependencyGraphNode<T>>getVertices()Deprecated.Returns the vertices contained in this graph.intsize()Deprecated.Returns the number of nodes contained in this graph.Methods inherited from class kieker.tools.trace.analysis.filter.visualization.graph.AbstractGraph
traverse, traverseWithVerticesFirst
-
Constructor Details
-
AbstractDependencyGraph
Deprecated.Creates a new dependency graph with the given root entity.- Parameters:
rootEntity- The entity from which the root node originates
-
-
Method Details
-
getNode
Deprecated.Delivers the node with the given key.- Parameters:
i- The key to search for.- Returns:
- The corresponding node to the given key if it exists, null otherwise.
-
addNode
Deprecated.Adds a node to this graph.- Parameters:
i- The key of the node.node- The node itself.
-
getRootNode
Deprecated.Returns this graph's root node.- Returns:
- See above
-
getNodes
Deprecated.Returns all nodes contained in this graph.- Returns:
- See above
-
size
public int size()Deprecated.Returns the number of nodes contained in this graph.- Returns:
- See above
-
getVertices
Deprecated.Description copied from class:AbstractGraphReturns the vertices contained in this graph.- Specified by:
getVerticesin classAbstractGraph<DependencyGraphNode<T extends ISystemModelElement>,WeightedBidirectionalDependencyGraphEdge<T extends ISystemModelElement>,TraceInformation>- Returns:
- See above
-