Uses of Class
kieker.visualization.trace.call.tree.AbstractCallTreeNode
Package | Description |
---|---|
kieker.visualization.trace.call.tree |
Copyright 2022 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 AbstractCallTreeNode in kieker.visualization.trace.call.tree
Subclasses of AbstractCallTreeNode in kieker.visualization.trace.call.tree Modifier and Type Class Description class
AbstractAggregatedCallTreeNode<T>
This is an abstract base for a single node within an aggregated call tree.class
TraceCallTreeNode
This class represents a single node within the trace call tree.Methods in kieker.visualization.trace.call.tree that return AbstractCallTreeNode Modifier and Type Method Description abstract AbstractCallTreeNode<T>
AbstractCallTreeNode. newCall(T destination, MessageTrace origin, IOriginRetentionPolicy originPolicy)
AbstractCallTreeNode<AllocationComponentOperationPair>
TraceCallTreeNode. newCall(AllocationComponentOperationPair destination, MessageTrace origin, IOriginRetentionPolicy originPolicy)
Methods in kieker.visualization.trace.call.tree with parameters of type AbstractCallTreeNode Modifier and Type Method Description protected static <T> void
AbstractCallTreeFilter. addTraceToTree(AbstractCallTreeNode<T> root, MessageTrace trace, AbstractCallTreeFilter.IPairFactory<T> pairFactory, boolean aggregated)
Adds the given trace to the given tree.protected static java.lang.String
AbstractCallTreeFilter. nodeLabel(AbstractCallTreeNode<?> node, boolean shortLabels)
Add a node label.protected static void
AbstractCallTreeFilter. saveTreeToDotFile(AbstractCallTreeNode<?> root, java.lang.String outputFn, boolean includeWeights, boolean includeEois, boolean shortLabels)
This method saves the given tree as valid dot code into the given file.static <T> void
AbstractCallTreeFilter. writeDotForMessageTrace(AbstractCallTreeNode<T> root, AbstractCallTreeFilter.IPairFactory<T> pairFactory, MessageTrace msgTrace, java.lang.String outputFilename, boolean includeWeights, boolean shortLabels)
Write dot info for message trace.Constructors in kieker.visualization.trace.call.tree with parameters of type AbstractCallTreeNode Constructor Description WeightedDirectedCallTreeEdge(AbstractCallTreeNode<T> source, AbstractCallTreeNode<T> target, MessageTrace origin, IOriginRetentionPolicy originPolicy)
Creates a new instance of this class using the given parameters.