Uses of Class
kieker.visualization.trace.dependency.graph.DependencyGraphNode
Packages that use DependencyGraphNode
Package
Description
Copyright 2026 Kieker Project (http://kieker-monitoring.net)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
-
Uses of DependencyGraphNode in kieker.visualization.trace.dependency.graph
Methods in kieker.visualization.trace.dependency.graph that return DependencyGraphNodeModifier and TypeMethodDescriptionprotected final DependencyGraphNode<T>AbstractDependencyGraph.getNode(int i) Delivers the node with the given key.final DependencyGraphNode<T>AbstractDependencyGraph.getRootNode()Returns this graph's root node.Methods in kieker.visualization.trace.dependency.graph that return types with arguments of type DependencyGraphNodeModifier and TypeMethodDescriptionAbstractDependencyGraph.getNodes()Returns all nodes contained in this graph.AbstractDependencyGraph.getVertices()Methods in kieker.visualization.trace.dependency.graph with parameters of type DependencyGraphNodeModifier and TypeMethodDescriptionvoidDependencyGraphNode.addIncomingDependency(DependencyGraphNode<T> source, boolean isAssumed, TraceInformation origin, IOriginRetentionPolicy originPolicy) Adds an incoming dependency to this node.voidDependencyGraphNode.addIncomingDependency(DependencyGraphNode<T> source, TraceInformation origin, IOriginRetentionPolicy originPolicy) Adds an incoming dependency to this node.protected final voidAbstractDependencyGraph.addNode(int i, DependencyGraphNode<T> node) Adds a node to this graph.voidDependencyGraphNode.addOutgoingDependency(DependencyGraphNode<T> destination, boolean isAssumed, TraceInformation origin, IOriginRetentionPolicy originPolicy) Adds an outgoing dependency to this node.voidDependencyGraphNode.addOutgoingDependency(DependencyGraphNode<T> destination, TraceInformation origin, IOriginRetentionPolicy originPolicy) Adds an outgoing dependency to this node.protected static StringAbstractComponentDependencyGraphFormatter.createComponentNodeLabel(DependencyGraphNode<AllocationComponent> node, boolean useShortLabels, String stereotype) Utility function to create a label for component nodes.protected static StringAbstractDependencyGraphFormatter.createNodeId(DependencyGraphNode<?> node) Utility function to create a textual node ID for a given node.protected StringAbstractOperationDependencyGraphFormatter.createOperationNodeLabel(Operation operation, DependencyGraphNode<?> node) protected static StringAbstractDependencyGraphFormatter.getNodeFillColor(DependencyGraphNode<?> node) Utility function to determine the fill color to use for a given node.protected voidAbstractDependencyGraphFilter.invokeDecorators(AbstractMessage message, DependencyGraphNode<?> sourceNode, DependencyGraphNode<?> targetNode) This is a helper method to invoke all decorators and send them a message.protected booleanAbstractDependencyGraphFilter.isDependencyAssumed(DependencyGraphNode<?> source, DependencyGraphNode<?> target) Determines whether the given edge is assumed or not.abstract voidAbstractNodeDecorator.processMessage(AbstractMessage message, DependencyGraphNode<?> sourceNode, DependencyGraphNode<?> targetNode, TimeUnit timeunit) Processes a message sent from the given source to the given target node.voidResponseTimeColorNodeDecorator.processMessage(AbstractMessage message, DependencyGraphNode<?> sourceNode, DependencyGraphNode<?> targetNode, TimeUnit timeunit) voidResponseTimeNodeDecorator.processMessage(AbstractMessage message, DependencyGraphNode<?> sourceNode, DependencyGraphNode<?> targetNode, TimeUnit timeunit) Constructors in kieker.visualization.trace.dependency.graph with parameters of type DependencyGraphNodeModifierConstructorDescriptionWeightedBidirectionalDependencyGraphEdge(DependencyGraphNode<T> source, DependencyGraphNode<T> target, TraceInformation origin, IOriginRetentionPolicy originPolicy) Creates a new instance of this class using the given parameters.